5 lines
105 B
Rust
5 lines
105 B
Rust
impl Solution {
|
|
pub fn is_power_of_two(n: i32) -> bool {
|
|
n > 0 && ((n - 1) & n) == 0
|
|
}
|
|
}
|