struct Solution; impl Solution { pub fn find_diagonal_order(mat: Vec>) -> Vec { let mut solution: Vec = Vec::new(); let x: usize = 0; let y: usize = 0; solution.push(mat[x][y]); solution } } fn main() { println!("Hello, world!"); }