fn main() { println!("Hello, world!"); } struct Solution; impl Solution { pub fn is_same_after_reversals(num: i32) -> bool { num == 0 || num % 10 != 0 } }