201. Bitwise AND of Numbers Range
public class Solution {
public int rangeBitwiseAnd(int m, int n) {
int r=Integer.MAX_VALUE;
while((m&r)!=(n&r)) r=r<<1;
return n&r;
}
}
public class Solution {
public int rangeBitwiseAnd(int m, int n) {
int r=Integer.MAX_VALUE;
while((m&r)!=(n&r)) r=r<<1;
return n&r;
}
}