Skip to content

Commit 68f1cb7

Browse files
committed
Update Wiki
1 parent 156b707 commit 68f1cb7

8 files changed

Lines changed: 24 additions & 9 deletions

File tree

β€ŽREADME.mdβ€Ž

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

β€Žlib/2024/README.mdβ€Ž

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
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 | [2025](../2025/README.md)
44

5-
## ⭐ 12/50
5+
## ⭐ 16/50
66

7-
[graph](../../wiki/tags/graph.md) `3` [binary-search](../../wiki/tags/binary-search.md) `1` [bron-kerbosch](../../wiki/tags/bron-kerbosch.md) `1` [clique](../../wiki/tags/clique.md) `1` [dijkstra](../../wiki/tags/dijkstra.md) `1` [disjoint-set](../../wiki/tags/disjoint-set.md) `1` [fsm](../../wiki/tags/fsm.md) `1` [geometry2d](../../wiki/tags/geometry2d.md) `1` [grid](../../wiki/tags/grid.md) `1` [lan-party](../../wiki/tags/lan-party.md) `1` [list](../../wiki/tags/list.md) `1` [maximum-clique](../../wiki/tags/maximum-clique.md) `1` [regex](../../wiki/tags/regex.md) `1` [sort](../../wiki/tags/sort.md) `1` [topological-sort](../../wiki/tags/topological-sort.md) `1`
7+
[graph](../../wiki/tags/graph.md) `3` [grid](../../wiki/tags/grid.md) `2` [binary-search](../../wiki/tags/binary-search.md) `1` [bron-kerbosch](../../wiki/tags/bron-kerbosch.md) `1` [clique](../../wiki/tags/clique.md) `1` [dijkstra](../../wiki/tags/dijkstra.md) `1` [disjoint-set](../../wiki/tags/disjoint-set.md) `1` [fsm](../../wiki/tags/fsm.md) `1` [geometry2d](../../wiki/tags/geometry2d.md) `1` [lan-party](../../wiki/tags/lan-party.md) `1` [list](../../wiki/tags/list.md) `1` [maximum-clique](../../wiki/tags/maximum-clique.md) `1` [regex](../../wiki/tags/regex.md) `1` [sequence](../../wiki/tags/sequence.md) `1` [sort](../../wiki/tags/sort.md) `1` [topological-sort](../../wiki/tags/topological-sort.md) `1` [validation](../../wiki/tags/validation.md) `1` [word-search](../../wiki/tags/word-search.md) `1`
88

99
| Day | Title | Difficulty | Tags | Source |
1010
|:---:|-------|:----------:|------|--------|
1111
| [1](https://adventofcode.com/2024/day/1) | [Historian Hysteria](https://adventofcode.com/2024/day/1) | 🟒 | [list](../../wiki/tags/list.md) | [day_01.ex](day_01.ex) |
12+
| [2](https://adventofcode.com/2024/day/2) | [Red-Nosed Reports](https://adventofcode.com/2024/day/2) | 🟑 | [sequence](../../wiki/tags/sequence.md), [validation](../../wiki/tags/validation.md) | [day_02.ex](day_02.ex) |
1213
| [3](https://adventofcode.com/2024/day/3) | [Mull It Over](https://adventofcode.com/2024/day/3) | 🟒 | [regex](../../wiki/tags/regex.md), [fsm](../../wiki/tags/fsm.md) | [day_03.ex](day_03.ex) |
14+
| [4](https://adventofcode.com/2024/day/4) | [Ceres Search](https://adventofcode.com/2024/day/4) | 🟑 | [grid](../../wiki/tags/grid.md), [word-search](../../wiki/tags/word-search.md) | [day_04.ex](day_04.ex) |
1315
| [5](https://adventofcode.com/2024/day/5) | [Print Queue](https://adventofcode.com/2024/day/5) | 🟒 | [graph](../../wiki/tags/graph.md), [topological-sort](../../wiki/tags/topological-sort.md), [sort](../../wiki/tags/sort.md) | [day_05.ex](day_05.ex) |
1416
| [12](https://adventofcode.com/2024/day/12) | [Garden Groups](https://adventofcode.com/2024/day/12) | 🟠 | [geometry2d](../../wiki/tags/geometry2d.md), [disjoint-set](../../wiki/tags/disjoint-set.md) | [day_12.ex](day_12.ex) |
1517
| [18](https://adventofcode.com/2024/day/18) | [RAM Run](https://adventofcode.com/2024/day/18) | 🟠 | [graph](../../wiki/tags/graph.md), [grid](../../wiki/tags/grid.md), [binary-search](../../wiki/tags/binary-search.md), [dijkstra](../../wiki/tags/dijkstra.md) | [day_18.ex](day_18.ex) |

β€Žwiki/difficulty.mdβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@
9191
| 2023 | [8](https://adventofcode.com/2023/day/8) | [Haunted Wasteland](https://adventofcode.com/2023/day/8) | [arithmetic](tags/arithmetic.md), [sequence](tags/sequence.md) | [day_08.ex](../lib/2023/day_08.ex) |
9292
| 2023 | [11](https://adventofcode.com/2023/day/11) | [Cosmic Expansion](https://adventofcode.com/2023/day/11) | [grid](tags/grid.md), [measurement](tags/measurement.md) | [day_11.ex](../lib/2023/day_11.ex) |
9393
| 2023 | [15](https://adventofcode.com/2023/day/15) | [Lens Library](https://adventofcode.com/2023/day/15) | [hash](tags/hash.md), [ordered-list](tags/ordered-list.md) | [day_15.ex](../lib/2023/day_15.ex) |
94+
| 2024 | [2](https://adventofcode.com/2024/day/2) | [Red-Nosed Reports](https://adventofcode.com/2024/day/2) | [sequence](tags/sequence.md), [validation](tags/validation.md) | [day_02.ex](../lib/2024/day_02.ex) |
95+
| 2024 | [4](https://adventofcode.com/2024/day/4) | [Ceres Search](https://adventofcode.com/2024/day/4) | [grid](tags/grid.md), [word-search](tags/word-search.md) | [day_04.ex](../lib/2024/day_04.ex) |
9496
| 2025 | [1](https://adventofcode.com/2025/day/1) | [Secret Entrance](https://adventofcode.com/2025/day/1) | [simulation](tags/simulation.md), [safe-dial](tags/safe-dial.md) | [day_01.ex](../lib/2025/day_01.ex) |
9597
| 2025 | [5](https://adventofcode.com/2025/day/5) | [Cafeteria](https://adventofcode.com/2025/day/5) | [simulation](tags/simulation.md), [ranges](tags/ranges.md), [interval-merging](tags/interval-merging.md) | [day_05.ex](../lib/2025/day_05.ex) |
9698
| 2025 | [8](https://adventofcode.com/2025/day/8) | [Playground](https://adventofcode.com/2025/day/8) | [union-find](tags/union-find.md) | [day_08.ex](../lib/2025/day_08.ex) |

β€Žwiki/tags/grid.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
| 2023 | [14](https://adventofcode.com/2023/day/14) | [Parabolic Reflector Dish](https://adventofcode.com/2023/day/14) | πŸ”΄ | [rotation](rotation.md), [modular-arithmetic](modular-arithmetic.md), [memoization](memoization.md) | [day_14.ex](../../lib/2023/day_14.ex) |
3333
| 2023 | [16](https://adventofcode.com/2023/day/16) | [The Floor Will Be Lava](https://adventofcode.com/2023/day/16) | πŸ”΄ | [memoization](memoization.md) | [day_16.ex](../../lib/2023/day_16.ex) |
3434
| 2023 | [17](https://adventofcode.com/2023/day/17) | [Clumsy Crucible](https://adventofcode.com/2023/day/17) | πŸ”΄ | [graph](graph.md), [dijkstra](dijkstra.md), [shortest-path](shortest-path.md), [state-space](state-space.md) | [day_17.ex](../../lib/2023/day_17.ex) |
35+
| 2024 | [4](https://adventofcode.com/2024/day/4) | [Ceres Search](https://adventofcode.com/2024/day/4) | 🟑 | [word-search](word-search.md) | [day_04.ex](../../lib/2024/day_04.ex) |
3536
| 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) | [day_18.ex](../../lib/2024/day_18.ex) |
3637
| 2025 | [4](https://adventofcode.com/2025/day/4) | [Printing Department](https://adventofcode.com/2025/day/4) | 🟠 | [simulation](simulation.md), [graph](graph.md) | [day_04.ex](../../lib/2025/day_04.ex) |
3738
| 2025 | [6](https://adventofcode.com/2025/day/6) | [Trash Compactor](https://adventofcode.com/2025/day/6) | 🟠 | [parsing](parsing.md), [math](math.md) | [day_06.ex](../../lib/2025/day_06.ex) |

β€Žwiki/tags/index.mdβ€Ž

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
| [graph](graph.md) | 35 |
5656
| [graph-route](graph-route.md) | 1 |
5757
| [greedy](greedy.md) | 1 |
58-
| [grid](grid.md) | 32 |
58+
| [grid](grid.md) | 33 |
5959
| [grid2d](grid2d.md) | 1 |
6060
| [hard-description](hard-description.md) | 1 |
6161
| [hash](hash.md) | 3 |
@@ -117,7 +117,7 @@
117117
| [routing](routing.md) | 2 |
118118
| [safe-dial](safe-dial.md) | 1 |
119119
| [search](search.md) | 1 |
120-
| [sequence](sequence.md) | 25 |
120+
| [sequence](sequence.md) | 26 |
121121
| [set](set.md) | 17 |
122122
| [shortest-path](shortest-path.md) | 4 |
123123
| [sieve](sieve.md) | 1 |
@@ -145,9 +145,10 @@
145145
| [tsp](tsp.md) | 1 |
146146
| [unfold](unfold.md) | 1 |
147147
| [union-find](union-find.md) | 1 |
148-
| [validation](validation.md) | 5 |
148+
| [validation](validation.md) | 6 |
149149
| [vector](vector.md) | 2 |
150150
| [visual-result](visual-result.md) | 3 |
151151
| [walk](walk.md) | 7 |
152152
| [walk3d](walk3d.md) | 1 |
153+
| [word-search](word-search.md) | 1 |
153154
| [zipper](zipper.md) | 1 |

β€Žwiki/tags/sequence.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
| 2022 | [20](https://adventofcode.com/2022/day/20) | [Grove Positioning System](https://adventofcode.com/2022/day/20) | 🟠 | [large-number](large-number.md), [circular-list](circular-list.md) | [day_20.ex](../../lib/2022/day_20.ex) |
3030
| 2023 | [8](https://adventofcode.com/2023/day/8) | [Haunted Wasteland](https://adventofcode.com/2023/day/8) | 🟑 | [arithmetic](arithmetic.md) | [day_08.ex](../../lib/2023/day_08.ex) |
3131
| 2023 | [9](https://adventofcode.com/2023/day/9) | [Mirage Maintenance](https://adventofcode.com/2023/day/9) | 🟒 | [reduction](reduction.md) | [day_09.ex](../../lib/2023/day_09.ex) |
32+
| 2024 | [2](https://adventofcode.com/2024/day/2) | [Red-Nosed Reports](https://adventofcode.com/2024/day/2) | 🟑 | [validation](validation.md) | [day_02.ex](../../lib/2024/day_02.ex) |

β€Žwiki/tags/validation.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
| 2017 | [4](https://adventofcode.com/2017/day/4) | [High-Entropy Passphrases](https://adventofcode.com/2017/day/4) | 🟒 | | [day_04.ex](../../lib/2017/day_04.ex) |
1010
| 2020 | [4](https://adventofcode.com/2020/day/4) | [Passport Processing](https://adventofcode.com/2020/day/4) | 🟑 | [regex](regex.md), [parse-heavy](parse-heavy.md) | [day_04.ex](../../lib/2020/day_04.ex) |
1111
| 2020 | [16](https://adventofcode.com/2020/day/16) | [Ticket Translation](https://adventofcode.com/2020/day/16) | 🟠 | [range](range.md) | [day_16.ex](../../lib/2020/day_16.ex) |
12+
| 2024 | [2](https://adventofcode.com/2024/day/2) | [Red-Nosed Reports](https://adventofcode.com/2024/day/2) | 🟑 | [sequence](sequence.md) | [day_02.ex](../../lib/2024/day_02.ex) |

β€Žwiki/tags/word-search.mdβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Tag: `word-search`
2+
3+
[← Tags Index](index.md) | [← Home](../../README.md)
4+
5+
| Year | Day | Title | Difficulty | Other Tags | Source |
6+
|------|:---:|-------|:----------:|------------|--------|
7+
| 2024 | [4](https://adventofcode.com/2024/day/4) | [Ceres Search](https://adventofcode.com/2024/day/4) | 🟑 | [grid](grid.md) | [day_04.ex](../../lib/2024/day_04.ex) |

0 commit comments

Comments
Β (0)