You are viewing a single comment's thread. Return to all comments →
def andProduct(a, b): n=0 while a != b: a>>=1 b>>=1 n+=1 return a<<n
Seems like cookies are disabled on this browser, please enable them to open this website
AND Product
You are viewing a single comment's thread. Return to all comments →