Sorry if my question sounds silly ..
What are int S1 & S2 look like? Kindly please someone share info about the bit with me....Thank you .....
Code:
int s1 = u.getLowestSetBit();
int s2 = v.getLowestSetBit();
int k = (s1 < s2) ? s1 : s2;
if (k != 0)
Comment