You are viewing a single comment's thread. Return to all comments →
easy cpp
long sumXor(long n) { int no0=0; while(n!=0){ if(!(n&1))no0++; n=n>>1; } return pow(2,no0); }
Seems like cookies are disabled on this browser, please enable them to open this website
Sum vs XOR
You are viewing a single comment's thread. Return to all comments →
easy cpp