I have to string variables
A = 'AA';
B = 'A';
Any suggestions for creating algorithm to subtract two Hexadecimal numbers?
First numbers is always greater.
so A-B gives result 'A0';
A = 'AA';
B = 'B';
So result is '9F'
I may think of switch-case possibility, but can't solve this out