Bit Manipulation Math 3370. Smallest Number With All Set Bits ¶ Time: $O(\log n)$ Space: $O(1)$ C++JavaPython 1 2 3 4 5 6 7 8 9 10 11class Solution { public: int smallestNumber(int n) { return (1 << bitLength(n)) - 1; } private: int bitLength(int n) { return 32 - __builtin_clz(n); } }; 1 2 3 4 5 6 7 8 9class Solution { public int smallestNumber(int n) { return (1 << bitLength(n)) - 1; } private int bitLength(int n) { return 32 - Integer.numberOfLeadingZeros(n); } } 1 2 3class Solution: def smallestNumber(self, n: int) -> int: return (1 << n.bit_length()) - 1