869. Reordered Power of 2
Last updated
Was this helpful?
Last updated
Was this helpful?
Starting with a positive integer N
, we reorder the digits in any order (including the original order) such that the leading digit is not zero.
Return true
if and only if we can do this in a way such that the resulting number is a power of 2.
1 <= N <= 10^9
GeeksforGeeks
ProgramCreek
Input: 1
Output: true