1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/problems/power-of-four.rs
Matej Focko 504fc1ba67
problems(rs): add „342. Power of Four“
Signed-off-by: Matej Focko <mfocko@redhat.com>
2022-08-22 11:33:45 +02: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
}
}