Skip to content

3370. Smallest Number With All Set Bits 👍

  • Time: $O(\log n)$
  • Space: $O(1)$
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
class 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
9
class Solution {
  public int smallestNumber(int n) {
    return (1 << bitLength(n)) - 1;
  }

  private int bitLength(int n) {
    return 32 - Integer.numberOfLeadingZeros(n);
  }
}
1
2
3
class Solution:
  def smallestNumber(self, n: int) -> int:
    return (1 << n.bit_length()) - 1