You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classSolution {
boolisPowerOfTwo(int n) {
return n >0&& (1073741824% n ==0);
}
}
SOlution - 5
// Runtime: 0 ms, faster than 100.00% of Go online submissions for Power of Two.// Memory Usage: 2.1 MB, less than 10.91% of Go online submissions for Power of Two.funcisPowerOfTwo(nint) bool {
returnn>0&& ((n& (n-1)) ==0)
}