Skip to content

Latest commit

 

History

History

bitwise-and-of-numbers-range

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Bitwise AND of Numbers Range

LeetCode #: 201

Difficulty: Medium.

Topics: Bit Manipulation.

Problem

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

Example 1:

Input: [5,7]
Output: 4

Example 2:

Input: [0,1]
Output: 0