Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
BakerNet committed Dec 13, 2023
1 parent bac9883 commit 9c3544f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/13.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ fn do_vecs_differ_by_one<T: PartialEq>(a: &Vec<T>, b: &Vec<T>) -> bool {
}

fn find_vertical_reflection(map: &Vec<Vec<char>>, type2: bool) -> Option<usize> {
// invert map because horizontal check is simpler
let mut new = Vec::new();
for col in 0..map[0].len() {
new.push(Vec::new());
Expand Down

0 comments on commit 9c3544f

Please sign in to comment.