Skip to content

Commit 1f89847

Browse files
committed
chore: Run cargo fmt
1 parent cda40d9 commit 1f89847

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/day06.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,11 @@ fn scrape_map_for_guard(map: &[Vec<char>]) -> (i32, HashSet<(i32, i32)>, bool) {
108108
path_walked.insert(position);
109109
}
110110

111-
((dist_positions.len() + 1) as i32, path_walked, infinite_loop)
111+
(
112+
(dist_positions.len() + 1) as i32,
113+
path_walked,
114+
infinite_loop,
115+
)
112116
}
113117

114118
fn parse_map(input: &str) -> Vec<Vec<char>> {

0 commit comments

Comments
 (0)