美文网首页
201. Bitwise AND of Numbers Rang

201. Bitwise AND of Numbers Rang

作者: 我是你的果果呀 | 来源:发表于2016-12-30 09:12 被阅读0次

Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise AND of all numbers in this range, inclusive.

For example, given the range [5, 7], you should return 4.

[26, 30],它们的二进制如下:
左边公共部分决定了区间与的结果, 所以找到它再向左移回来。

相关文章

网友评论

      本文标题:201. Bitwise AND of Numbers Rang

      本文链接:https://www.haomeiwen.com/subject/uifmvttx.html