Programs/ Algo: take any integer number, convert to an unique string such as: 0 is replaced by A, 1 by B and so on. But any duplicate entries should be avoided i.e if there are two 1s in the input, B will be taken once. Once the digits are traversed, take two digits at a time and follow the same rule. [String conversion and comparison can not be used]