Skip to content

Commit c20841e

Browse files
authored
Added solution for 2639
1 parent a488ebf commit c20841e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
use std::cmp::max;
2+
3+
impl Solution {
4+
// Run nested loop on grid. If we are checking 0th number in inner vector, add it to result vector. Else compare the previous highest (length) with current (length).
5+
pub fn find_column_width(grid: Vec<Vec<i32>>) -> Vec<i32> {
6+
let mut result = Vec::new();
7+
8+
for (i, row) in grid.iter().enumerate() {
9+
for (j, num) in row.iter().enumerate() {
10+
let mut length = num.to_string().len();
11+
if i == 0 {
12+
result.push(length as i32);
13+
} else {
14+
result[j] = max(result[j], length as i32);
15+
}
16+
}
17+
}
18+
19+
return result;
20+
}
21+
}

0 commit comments

Comments
 (0)