1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/rs/power-of-four.rs
Matej Focko 2351dfd0ee
chore: unwrap one layer
Signed-off-by: Matej Focko <mfocko@redhat.com>
2023-12-12 14:36:00 +01:00

15 lines
225 B
Rust

impl Solution {
pub fn is_power_of_four(n: i32) -> bool {
if n == 0 {
return false;
}
let mut x = n;
while x % 4 == 0 {
x >>= 2;
}
x == 1
}
}