Skip to content

Instantly share code, notes, and snippets.

@wushbin
Created April 1, 2020 04:44
Show Gist options
  • Select an option

  • Save wushbin/b9e07a5cfb92f4d12695527f8bd3b514 to your computer and use it in GitHub Desktop.

Select an option

Save wushbin/b9e07a5cfb92f4d12695527f8bd3b514 to your computer and use it in GitHub Desktop.
class Solution {
public int rangeBitwiseAnd(int m, int n) {
int i = 0;
while(m != n) {
m >>= 1;
n >>= 1;
i++;
}
return m << i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment