Skip to content

Commit ac41abc

Browse files
authored
Added solution for 1861
1 parent e681626 commit ac41abc

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

01861. Rotating the Box.rs

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
impl Solution {
2+
// Create new box called result and rotate box_contents to store in result vector by manipulating rows and columns. Then loop through result vector column-wise and reverse-row wise, i.e. bottom to top, column by column. Maintain a counter called last available cell which will be used to place the next '#' and will update every time we see a '*'
3+
pub fn rotate_the_box(box_contents: Vec<Vec<char>>) -> Vec<Vec<char>> {
4+
let rows_count = box_contents.len();
5+
let columns_count = box_contents[0].len();
6+
let mut result = vec![vec![]; columns_count];
7+
for i in 0..columns_count {
8+
result[i] = vec!['0'; rows_count];
9+
}
10+
for (row_index, row) in box_contents.iter().enumerate() {
11+
for (column_index, cell) in row.iter().enumerate() {
12+
result[column_index][rows_count - row_index - 1] = *cell;
13+
}
14+
}
15+
16+
for i in 0..rows_count {
17+
let mut last_available_cell = columns_count - 1;
18+
for j in (0..columns_count).rev() {
19+
if result[j][i] == '*' {
20+
last_available_cell = j - 1;
21+
} else if result[j][i] == '#' {
22+
result[j][i] = '.';
23+
result[last_available_cell][i] = '#';
24+
if last_available_cell != 0 {
25+
last_available_cell = last_available_cell - 1;
26+
}
27+
}
28+
}
29+
}
30+
31+
return result;
32+
}
33+
}

0 commit comments

Comments
 (0)