File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717| [ Day 4: Printing Department] ( src/solutions/year2025/day04.rs ) | ⭐⭐ | 3.615 | 9.998 |
1818| [ Day 5: Cafeteria] ( src/solutions/year2025/day05.rs ) | ⭐⭐ | 0.275 | 0.469 |
1919| [ Day 6: Trash Compactor] ( src/solutions/year2025/day06.rs ) | ⭐⭐ | 0.117 | 2.577 |
20- | [ Day 7: Laboratories] ( src/solutions/year2025/day07.rs ) | ⭐ | 2.962 | - |
20+ | [ Day 7: Laboratories] ( src/solutions/year2025/day07.rs ) | ⭐⭐ | 6.711 | 5.789 |
2121
2222# 2024
2323
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ fn submit_answer_function(
6969 Ok ( o) => match o {
7070 SubmissionOutcome :: Correct => println ! ( "✅ Answer is correct" ) ,
7171 SubmissionOutcome :: Incorrect => println ! ( "❌ Answer is incorrect. Try again" ) ,
72- SubmissionOutcome :: Wait => println ! ( "⏳ Another answer submitted tu early. Wait and submit again in a while" ) ,
72+ SubmissionOutcome :: Wait => println ! ( "⏳ Another answer submitted too early. Wait and submit again in a while" ) ,
7373 SubmissionOutcome :: WrongLevel => match part {
7474 PuzzlePart :: PartOne => println ! ( "Wrong level. Maybe this part has been already solved?" ) ,
7575 PuzzlePart :: PartTwo => println ! ( "Wrong level. Maybe this part has already been solved or part one isn't solved?" ) ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const BEAM: char = '|';
1212pub struct Day07 ;
1313
1414type Splits = u16 ;
15- type Timelines = u16 ;
15+ type Timelines = u64 ;
1616
1717impl Solution for Day07 {
1818 fn part_one ( & self , input : & str ) -> String {
@@ -100,7 +100,7 @@ fn print(grid: &Grid<char>, beams: &[Beam]) {
100100#[ derive( Copy , Clone , Debug ) ]
101101struct Beam {
102102 line : Line ,
103- timelines : u16 ,
103+ timelines : Timelines ,
104104}
105105
106106impl Beam {
You can’t perform that action at this time.
0 commit comments