SemiCOLON

This commit is contained in:
Daniel Flanagan 2022-12-14 14:11:04 -06:00
parent e6076d7853
commit 928433f6b7
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ fn part1(input: &Input) -> Result {
let mut trees: HashSet<(usize, usize)> = HashSet::new();
let mut add = |y, x| {
trees.insert((y, x));
};
trees.insert((y, x))
}
let h = input.len();
let w = input[0].len();