🚀Question 198: What is the output?🦀 fn main() { let data = vec!["a", "bb", "ccc"]; let max = data.iter() .max_by_key ( |s| s.len () ) .unwrap (); println!("{}", max); }
1
0
6
2K
3
@code_rusty Gracias por este tipo de problemas, me han ayudado a aprender cosas nuevas ☺️