fn solution(mut x: i32) -> bool { match x.to_string().chars().into_iter().position(|s| s == '3') { Some(_t) => true, _e => false, } }
- fn solution(mut x: i32) -> bool {
for d in x.to_string().chars() {if d == '3' {return true;}- match x.to_string().chars().into_iter().position(|s| s == '3') {
- Some(_t) => true,
- _e => false,
- }
false- }