Skip to content

Commit 83d15ad

Browse files
committed
Fix typo
1 parent fe21121 commit 83d15ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reflections/2025/day05.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Part 1 is just filtering for the points in the set:
1212

1313
```haskell
1414
part1 :: IntervalSet Int -> [Int] -> Int
15-
part1 iset = length . filter (`IVS.member` buildSet iset)
15+
part1 iset = length . filter (`IVS.member` iset)
1616
```
1717

1818
And part 2 is just getting the size of that set:

0 commit comments

Comments
 (0)