impl Solution { pub fn search_matrix(matrix: Vec>, target: i32) -> bool { matrix.concat().binary_search(&target).is_ok() } }