Skip to content

Commit 5c1a1f4

Browse files
committed
Update WIKI
1 parent b75cacf commit 5c1a1f4

8 files changed

Lines changed: 20 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

lib/2025/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22

33
[Home](../../README.md) | [2015](../2015/README.md) | [2016](../2016/README.md) | [2017](../2017/README.md) | [2018](../2018/README.md) | [2019](../2019/README.md) | [2020](../2020/README.md) | [2021](../2021/README.md) | [2022](../2022/README.md) | [2023](../2023/README.md) | [2024](../2024/README.md) | 2025
44

5-
## 6/50
5+
## 10/50
66

7-
[grid](../../wiki/tags/grid.md) `2` [dynamic-programming](../../wiki/tags/dynamic-programming.md) `1` [graph](../../wiki/tags/graph.md) `1` [simulation](../../wiki/tags/simulation.md) `1` [union-find](../../wiki/tags/union-find.md) `1`
7+
[dynamic-programming](../../wiki/tags/dynamic-programming.md) `3` [graph](../../wiki/tags/graph.md) `3` [grid](../../wiki/tags/grid.md) `2` [bitwise](../../wiki/tags/bitwise.md) `1` [shortest-path](../../wiki/tags/shortest-path.md) `1` [simulation](../../wiki/tags/simulation.md) `1` [union-find](../../wiki/tags/union-find.md) `1`
88

99
| Day | Title | Difficulty | Tags | Source |
1010
|:---:|-------|:----------:|------|--------|
1111
| [4](https://adventofcode.com/2025/day/4) | [Printing Department](https://adventofcode.com/2025/day/4) | 🟠 | [simulation](../../wiki/tags/simulation.md), [grid](../../wiki/tags/grid.md), [graph](../../wiki/tags/graph.md) | [day_04.ex](day_04.ex) |
1212
| [7](https://adventofcode.com/2025/day/7) | [Laboratories](https://adventofcode.com/2025/day/7) | 🔴 | [grid](../../wiki/tags/grid.md), [dynamic-programming](../../wiki/tags/dynamic-programming.md) | [day_07.ex](day_07.ex) |
1313
| [8](https://adventofcode.com/2025/day/8) | [Playground](https://adventofcode.com/2025/day/8) | 🟡 | [union-find](../../wiki/tags/union-find.md) | [day_08.ex](day_08.ex) |
14+
| [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | 🔴 | [graph](../../wiki/tags/graph.md), [shortest-path](../../wiki/tags/shortest-path.md), [bitwise](../../wiki/tags/bitwise.md), [dynamic-programming](../../wiki/tags/dynamic-programming.md) | [day_10.ex](day_10.ex) |
15+
| [11](https://adventofcode.com/2025/day/11) | [Reactor](https://adventofcode.com/2025/day/11) | 🟠 | [graph](../../wiki/tags/graph.md), [dynamic-programming](../../wiki/tags/dynamic-programming.md) | [day_11.ex](day_11.ex) |

wiki/difficulty.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@
149149
| 2024 | [18](https://adventofcode.com/2024/day/18) | [RAM Run](https://adventofcode.com/2024/day/18) | [graph](tags/graph.md), [shortest-path](tags/shortest-path.md), [binary-search](tags/binary-search.md), [dijkstra](tags/dijkstra.md), [grid-traversal](tags/grid-traversal.md) | [day_18.ex](../lib/2024/day_18.ex) |
150150
| 2024 | [23](https://adventofcode.com/2024/day/23) | [LAN Party](https://adventofcode.com/2024/day/23) | [graph](tags/graph.md), [clique](tags/clique.md), [bron-kerbosch](tags/bron-kerbosch.md), [maximum-clique](tags/maximum-clique.md), [lan-party](tags/lan-party.md) | [day_23.ex](../lib/2024/day_23.ex) |
151151
| 2025 | [4](https://adventofcode.com/2025/day/4) | [Printing Department](https://adventofcode.com/2025/day/4) | [simulation](tags/simulation.md), [grid](tags/grid.md), [graph](tags/graph.md) | [day_04.ex](../lib/2025/day_04.ex) |
152+
| 2025 | [11](https://adventofcode.com/2025/day/11) | [Reactor](https://adventofcode.com/2025/day/11) | [graph](tags/graph.md), [dynamic-programming](tags/dynamic-programming.md) | [day_11.ex](../lib/2025/day_11.ex) |
152153

153154
## 🔴 L
154155

@@ -172,6 +173,7 @@
172173
| 2023 | [19](https://adventofcode.com/2023/day/19) | [Aplenty](https://adventofcode.com/2023/day/19) | [op-code](tags/op-code.md), [parse-heavy](tags/parse-heavy.md) | [day_19.ex](../lib/2023/day_19.ex) |
173174
| 2023 | [25](https://adventofcode.com/2023/day/25) | [Snowverload](https://adventofcode.com/2023/day/25) | [graph](tags/graph.md), [min-cut](tags/min-cut.md) | [day_25.ex](../lib/2023/day_25.ex) |
174175
| 2025 | [7](https://adventofcode.com/2025/day/7) | [Laboratories](https://adventofcode.com/2025/day/7) | [grid](tags/grid.md), [dynamic-programming](tags/dynamic-programming.md) | [day_07.ex](../lib/2025/day_07.ex) |
176+
| 2025 | [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | [graph](tags/graph.md), [shortest-path](tags/shortest-path.md), [bitwise](tags/bitwise.md), [dynamic-programming](tags/dynamic-programming.md) | [day_10.ex](../lib/2025/day_10.ex) |
175177

176178
## 💀 XL
177179

wiki/tags/bitwise.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
| 2020 | [14](https://adventofcode.com/2020/day/14) | [Docking Data](https://adventofcode.com/2020/day/14) | 🟠 | [mask](mask.md), [recursion](recursion.md) | [day_14.ex](../../lib/2020/day_14.ex) |
99
| 2021 | [16](https://adventofcode.com/2021/day/16) | [Packet Decoder](https://adventofcode.com/2021/day/16) | 🟠 | | [day_16.ex](../../lib/2021/day_16.ex) |
1010
| 2022 | [6](https://adventofcode.com/2022/day/6) | [Tuning Trouble](https://adventofcode.com/2022/day/6) | 🟢 | [set](set.md) | [day_06.ex](../../lib/2022/day_06.ex) |
11+
| 2025 | [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | 🔴 | [graph](graph.md), [shortest-path](shortest-path.md), [dynamic-programming](dynamic-programming.md) | [day_10.ex](../../lib/2025/day_10.ex) |

wiki/tags/dynamic-programming.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@
66
|------|:---:|-------|:----------:|------------|--------|
77
| 2020 | [10](https://adventofcode.com/2020/day/10) | [Adapter Array](https://adventofcode.com/2020/day/10) | 🟡 | [memoization](memoization.md), [sort](sort.md) | [day_10.ex](../../lib/2020/day_10.ex) |
88
| 2025 | [7](https://adventofcode.com/2025/day/7) | [Laboratories](https://adventofcode.com/2025/day/7) | 🔴 | [grid](grid.md) | [day_07.ex](../../lib/2025/day_07.ex) |
9+
| 2025 | [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | 🔴 | [graph](graph.md), [shortest-path](shortest-path.md), [bitwise](bitwise.md) | [day_10.ex](../../lib/2025/day_10.ex) |
10+
| 2025 | [11](https://adventofcode.com/2025/day/11) | [Reactor](https://adventofcode.com/2025/day/11) | 🟠 | [graph](graph.md) | [day_11.ex](../../lib/2025/day_11.ex) |

wiki/tags/graph.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@
2626
| 2024 | [18](https://adventofcode.com/2024/day/18) | [RAM Run](https://adventofcode.com/2024/day/18) | 🟠 | [shortest-path](shortest-path.md), [binary-search](binary-search.md), [dijkstra](dijkstra.md), [grid-traversal](grid-traversal.md) | [day_18.ex](../../lib/2024/day_18.ex) |
2727
| 2024 | [23](https://adventofcode.com/2024/day/23) | [LAN Party](https://adventofcode.com/2024/day/23) | 🟠 | [clique](clique.md), [bron-kerbosch](bron-kerbosch.md), [maximum-clique](maximum-clique.md), [lan-party](lan-party.md) | [day_23.ex](../../lib/2024/day_23.ex) |
2828
| 2025 | [4](https://adventofcode.com/2025/day/4) | [Printing Department](https://adventofcode.com/2025/day/4) | 🟠 | [simulation](simulation.md), [grid](grid.md) | [day_04.ex](../../lib/2025/day_04.ex) |
29+
| 2025 | [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | 🔴 | [shortest-path](shortest-path.md), [bitwise](bitwise.md), [dynamic-programming](dynamic-programming.md) | [day_10.ex](../../lib/2025/day_10.ex) |
30+
| 2025 | [11](https://adventofcode.com/2025/day/11) | [Reactor](https://adventofcode.com/2025/day/11) | 🟠 | [dynamic-programming](dynamic-programming.md) | [day_11.ex](../../lib/2025/day_11.ex) |

wiki/tags/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| [binary-search](binary-search.md) | 1 |
1414
| [binary-space](binary-space.md) | 1 |
1515
| [bitmask](bitmask.md) | 1 |
16-
| [bitwise](bitwise.md) | 4 |
16+
| [bitwise](bitwise.md) | 5 |
1717
| [bron-kerbosch](bron-kerbosch.md) | 1 |
1818
| [brute-force](brute-force.md) | 1 |
1919
| [calculation](calculation.md) | 3 |
@@ -34,7 +34,7 @@
3434
| [dijkstra](dijkstra.md) | 3 |
3535
| [disjoint-set](disjoint-set.md) | 1 |
3636
| [double-parse](double-parse.md) | 1 |
37-
| [dynamic-programming](dynamic-programming.md) | 2 |
37+
| [dynamic-programming](dynamic-programming.md) | 4 |
3838
| [emulation](emulation.md) | 2 |
3939
| [erlang](erlang.md) | 10 |
4040
| [flood-fill](flood-fill.md) | 2 |
@@ -45,7 +45,7 @@
4545
| [geometry](geometry.md) | 3 |
4646
| [geometry2d](geometry2d.md) | 5 |
4747
| [geometry3d](geometry3d.md) | 2 |
48-
| [graph](graph.md) | 22 |
48+
| [graph](graph.md) | 24 |
4949
| [graph-route](graph-route.md) | 1 |
5050
| [graph-traversal](graph-traversal.md) | 2 |
5151
| [grid](grid.md) | 28 |
@@ -104,7 +104,7 @@
104104
| [rust](rust.md) | 15 |
105105
| [sequence](sequence.md) | 25 |
106106
| [set](set.md) | 16 |
107-
| [shortest-path](shortest-path.md) | 5 |
107+
| [shortest-path](shortest-path.md) | 6 |
108108
| [simulation](simulation.md) | 3 |
109109
| [sliding-window](sliding-window.md) | 4 |
110110
| [slow](slow.md) | 16 |

wiki/tags/shortest-path.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
| 2022 | [24](https://adventofcode.com/2022/day/24) | [Blizzard Basin](https://adventofcode.com/2022/day/24) | 🟠 | [graph](graph.md), [implicit-graph](implicit-graph.md), [a-star](a-star.md) | [day_24.ex](../../lib/2022/day_24.ex) |
1010
| 2023 | [17](https://adventofcode.com/2023/day/17) | [Clumsy Crucible](https://adventofcode.com/2023/day/17) | 🔴 | [graph](graph.md), [dijkstra](dijkstra.md), [state-space](state-space.md), [grid](grid.md) | [day_17.ex](../../lib/2023/day_17.ex) |
1111
| 2024 | [18](https://adventofcode.com/2024/day/18) | [RAM Run](https://adventofcode.com/2024/day/18) | 🟠 | [graph](graph.md), [binary-search](binary-search.md), [dijkstra](dijkstra.md), [grid-traversal](grid-traversal.md) | [day_18.ex](../../lib/2024/day_18.ex) |
12+
| 2025 | [10](https://adventofcode.com/2025/day/10) | [Factory](https://adventofcode.com/2025/day/10) | 🔴 | [graph](graph.md), [bitwise](bitwise.md), [dynamic-programming](dynamic-programming.md) | [day_10.ex](../../lib/2025/day_10.ex) |

0 commit comments

Comments
 (0)