impl Solution {
    pub fn is_power_of_two(n: i32) -> bool {
        n > 0 && ((n - 1) & n) == 0
    }
}