Skip to content

Commit bc31c7c

Browse files
committed
comment
1 parent 7b9ee17 commit bc31c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/2025_11/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fn solve<const PART: usize>(input: &str) -> usize {
4545
if PART == 1 {
4646
path_count("you", "out", &map, &mut cache)
4747
} else {
48-
// Assuming there are no cycles, there can only be a path from fft to dac or dac to fft
48+
// Assuming there are no cycles, there can only be paths from fft to dac or dac to fft
4949
let paths_fft_dac = path_count("fft", "dac", &map, &mut cache);
5050
cache.clear();
5151
let paths_dac_fft = path_count("dac", "fft", &map, &mut cache);

0 commit comments

Comments
 (0)