File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 28
28
| [ Day 15: Warehouse Woes] ( src/solutions/year2024/day15.rs ) | ⭐⭐ | 7.226 | 9.084 |
29
29
| [ Day 16: Reindeer Maze] ( src/solutions/year2024/day16.rs ) | ⭐ | 6.478 | - |
30
30
| [ Day 17: Chronospatial Computer] ( src/solutions/year2024/day17.rs ) | - | - | - |
31
- | [ Day 18: RAM Run] ( src/solutions/year2024/day18.rs ) | ⭐⭐ | 2.487 | 431.665 |
31
+ | [ Day 18: RAM Run] ( src/solutions/year2024/day18.rs ) | ⭐⭐ | 2.487 | 431.665a |
32
32
| [ Day 19: Linen Layout] ( src/solutions/year2024/day19.rs ) | ⭐⭐ | 2.923 | 22.751 |
33
33
34
34
# 2023
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ impl Solution for Day18 {
52
52
. collect ( ) ;
53
53
54
54
#[ allow( clippy:: needless_range_loop) ]
55
- for i in self . memory_size .. {
55
+ for i in self . memory_size ..byte_positions . len ( ) {
56
56
let current = byte_positions[ i] ;
57
57
skipped. insert ( current) ;
58
58
You can’t perform that action at this time.
0 commit comments