Skip to content

Commit

Permalink
Day 25a
Browse files Browse the repository at this point in the history
  • Loading branch information
lpenz committed Dec 25, 2023
1 parent 99cb098 commit a714ecf
Show file tree
Hide file tree
Showing 8 changed files with 1,372 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v4.1.1
- uses: docker://lpenz/omnilint:0.5.1
rust:
uses: lpenz/ghworkflow-rust/.github/workflows/rust.yml@v0.19.0
uses: lpenz/ghworkflow-rust/.github/workflows/rust.yml@devel
with:
coveralls: true
publish_cratesio: false
Expand Down Expand Up @@ -41,6 +41,7 @@ jobs:
- day22
- day23
- day24
- day25
# end
if: github.ref == 'refs/heads/main'
needs: [ omnilint, rust ]
Expand Down
10 changes: 10 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ members = [
"day22",
"day23",
"day24",
"day25",
]

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ Some interesting things that happened on specific days:
- Day 20b: had to look at the graph to figure out the "counter result
modules".
- Day 24b: used [z3] in rust.
- Day 25a: graph min cut problem; did it with multiple Dijsktra, maybe
try [Stoer-Wagner] in the future.


<table><tr>
<td><a href="https://github.com/lpenz/adventofcode2022">:arrow_left: 2022</td>
</tr></table>

[z3]: https://docs.rs/z3/latest/z3/
[Stoer-Wagner]: https://scholar.google.com/scholar?cluster=10111487970680388034
10 changes: 10 additions & 0 deletions day25/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "day25"
version = "0.1.0"
edition = "2021"

[dependencies]
aoc = { path = "../aoc" }
color-eyre = "0.6.2"
copstr = "0.1.2"
nom = "7.1.3"
Loading

0 comments on commit a714ecf

Please sign in to comment.