File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Solutions for [Advent of Code](https://adventofcode.com/) in [Rust](https://www.
31
31
| [ Day 18] ( ./src/bin/18.rs ) | ` 49.6µs ` | ` 58.9µs ` |
32
32
| [ Day 19] ( ./src/bin/19.rs ) | ` 204.0µs ` | ` 693.5µs ` |
33
33
| [ Day 20] ( ./src/bin/20.rs ) | ` 308.3µs ` | ` 1.8ms ` |
34
- | [ Day 21] ( ./src/bin/21.rs ) | ` 11.0µs ` | ` 109.7µs ` |
34
+ | [ Day 21] ( ./src/bin/21.rs ) | ` 10.9µs ` | ` 112.6µs ` |
35
35
36
36
** Total: 16.69ms**
37
37
<!-- - benchmarking table --->
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ pub fn part_one(input: &str) -> Option<u64> {
207
207
}
208
208
209
209
pub fn part_two ( input : & str ) -> Option < u64 > {
210
- Some ( solve ( input, 25 ) )
210
+ Some ( solve ( input, 26 ) )
211
211
}
212
212
213
213
#[ cfg( test) ]
@@ -223,6 +223,6 @@ mod tests {
223
223
#[ test]
224
224
fn test_part_two ( ) {
225
225
let result = part_two ( & advent_of_code:: template:: read_file ( "examples" , DAY ) ) ;
226
- assert_eq ! ( result, Some ( 61952932092390 ) ) ;
226
+ assert_eq ! ( result, Some ( 154115708116294 ) ) ;
227
227
}
228
228
}
You can’t perform that action at this time.
0 commit comments