Skip to content

Commit

Permalink
aoc2023/day7: Add solution
Browse files Browse the repository at this point in the history
Signed-off-by: Andrej Orsula <orsula.andrej@gmail.com>
  • Loading branch information
AndrejOrsula committed Dec 7, 2023
1 parent bcd6c5a commit 599f5d7
Show file tree
Hide file tree
Showing 5 changed files with 1,316 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ My solutions to [Advent of Code](https://adventofcode.com) puzzles.
| 4 | [Scratchcards](https://adventofcode.com/2023/day/4) | [`day4.rs`](aoc2023/src/day4.rs) |
| 5 | [If You Give A Seed ...](https://adventofcode.com/2023/day/5) | [`day5.rs`](aoc2023/src/day5.rs) |
| 6 | [Wait For It](https://adventofcode.com/2023/day/6) | [`day6.rs`](aoc2023/src/day6.rs) |
| 7 | [Camel Cards](https://adventofcode.com/2023/day/7) | [`day7.rs`](aoc2023/src/day7.rs) |

</td><td>

Expand All @@ -36,6 +37,7 @@ My solutions to [Advent of Code](https://adventofcode.com) puzzles.
| 58.79 µs | 27.72 µs |
| 19.61 µs | 5.510 µs |
| 1.432 µs | 0.345 µs |
| 117.3 µs | 70.08 µs |

</td><td>

Expand All @@ -47,6 +49,7 @@ My solutions to [Advent of Code](https://adventofcode.com) puzzles.
| 53.39 µs | 28.44 µs |
| 16.38 µs | 19.364 s |
| 0.513 µs | 0.650 µs |
| 136.1 µs | 65.87 µs |

</td></tr>
</table>
Expand Down
1 change: 1 addition & 0 deletions aoc2023/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ aoc-runner = { workspace = true }
aoc-runner-derive = { workspace = true }
indoc = { workspace = true }

arrayvec = { version = "0.7" }
itertools = { version = "0.12" }
num-integer = { version = "0.1" }
rayon = { version = "1.8" }
Expand Down
Loading

0 comments on commit 599f5d7

Please sign in to comment.