|
106 | 106 | | 2015 | [25](https://adventofcode.com/2015/day/25) | [Let It Snow](https://adventofcode.com/2015/day/25) | [table-lookup](tags/table-lookup.md), [modular-arithmetic](tags/modular-arithmetic.md) | [day_25.ex](../lib/2015/day_25.ex) | |
107 | 107 | | 2016 | [8](https://adventofcode.com/2016/day/8) | [Two-Factor Authentication](https://adventofcode.com/2016/day/8) | [visual-result](tags/visual-result.md), [matrix](tags/matrix.md), [op-code](tags/op-code.md) | [day_08.ex](../lib/2016/day_08.ex) | |
108 | 108 | | 2016 | [9](https://adventofcode.com/2016/day/9) | [Explosives in Cyberspace](https://adventofcode.com/2016/day/9) | [sequence](tags/sequence.md), [unfold](tags/unfold.md) | [day_09.ex](../lib/2016/day_09.ex) | |
| 109 | +| 2016 | [13](https://adventofcode.com/2016/day/13) | [A Maze of Twisty Little Cubicles](https://adventofcode.com/2016/day/13) | [graph](tags/graph.md), [implicit-graph](tags/implicit-graph.md), [shortest-path](tags/shortest-path.md), [a-star](tags/a-star.md), [bfs](tags/bfs.md) | [day_13.ex](../lib/2016/day_13.ex) | |
| 110 | +| 2016 | [24](https://adventofcode.com/2016/day/24) | [Air Duct Spelunking](https://adventofcode.com/2016/day/24) | [graph](tags/graph.md), [shortest-path](tags/shortest-path.md), [tsp](tags/tsp.md), [grid](tags/grid.md), [matrix](tags/matrix.md) | [day_24.ex](../lib/2016/day_24.ex) | |
109 | 111 | | 2017 | [3](https://adventofcode.com/2017/day/3) | [Spiral Memory](https://adventofcode.com/2017/day/3) | [spiral](tags/spiral.md), [matrix](tags/matrix.md) | [day_03.ex](../lib/2017/day_03.ex) | |
110 | 112 | | 2017 | [6](https://adventofcode.com/2017/day/6) | [Memory Reallocation](https://adventofcode.com/2017/day/6) | [sequence](tags/sequence.md), [reduction](tags/reduction.md) | [day_06.ex](../lib/2017/day_06.ex) | |
111 | 113 | | 2017 | [7](https://adventofcode.com/2017/day/7) | [Recursive Circus](https://adventofcode.com/2017/day/7) | [tree](tags/tree.md) | [day_07.ex](../lib/2017/day_07.ex) | |
|
114 | 116 | | 2017 | [17](https://adventofcode.com/2017/day/17) | [Spinlock](https://adventofcode.com/2017/day/17) | [vector](tags/vector.md), [random-access](tags/random-access.md), [not-fast-enough](tags/not-fast-enough.md) | [day_17.ex](../lib/2017/day_17.ex) | |
115 | 117 | | 2017 | [23](https://adventofcode.com/2017/day/23) | [Coprocessor Conflagration](https://adventofcode.com/2017/day/23) | [op-code](tags/op-code.md) | [day_23.ex](../lib/2017/day_23.ex) | |
116 | 118 | | 2018 | [3](https://adventofcode.com/2018/day/3) | [No Matter How You Slice It](https://adventofcode.com/2018/day/3) | [grid](tags/grid.md), [set](tags/set.md), [not-fast-enough](tags/not-fast-enough.md) | [day_03.ex](../lib/2018/day_03.ex) | |
| 119 | +| 2018 | [7](https://adventofcode.com/2018/day/7) | [The Sum of Its Parts](https://adventofcode.com/2018/day/7) | [graph](tags/graph.md), [topological-sort](tags/topological-sort.md), [simulation](tags/simulation.md) | [day_07.ex](../lib/2018/day_07.ex) | |
| 120 | +| 2018 | [25](https://adventofcode.com/2018/day/25) | [Four-Dimensional Adventure](https://adventofcode.com/2018/day/25) | [graph](tags/graph.md), [connectivity](tags/connectivity.md), [constellation](tags/constellation.md) | [day_25.ex](../lib/2018/day_25.ex) | |
117 | 121 | | 2019 | [10](https://adventofcode.com/2019/day/10) | [Monitoring Station](https://adventofcode.com/2019/day/10) | [sequence](tags/sequence.md), [grid](tags/grid.md), [trigonometry](tags/trigonometry.md) | [day_10.ex](../lib/2019/day_10.ex) | |
118 | 122 | | 2020 | [11](https://adventofcode.com/2020/day/11) | [Seating System](https://adventofcode.com/2020/day/11) | [grid](tags/grid.md), [flood-fill](tags/flood-fill.md), [concurrency](tags/concurrency.md) | [day_11.ex](../lib/2020/day_11.ex) | |
119 | 123 | | 2020 | [13](https://adventofcode.com/2020/day/13) | [Shuttle Search](https://adventofcode.com/2020/day/13) | [number-theory](tags/number-theory.md), [chinese-remainder](tags/chinese-remainder.md), [modular-arithmetic](tags/modular-arithmetic.md) | [day_13.ex](../lib/2020/day_13.ex) | |
|
168 | 172 | | Year | Day | Title | Tags | Source | |
169 | 173 | |------|:---:|-------|------|--------| |
170 | 174 | | 2015 | [24](https://adventofcode.com/2015/day/24) | [It Hangs in the Balance](https://adventofcode.com/2015/day/24) | [not-fast-enough](tags/not-fast-enough.md), [power-set](tags/power-set.md), [ambiguous-solution](tags/ambiguous-solution.md) | [day_24.ex](../lib/2015/day_24.ex) | |
| 175 | +| 2019 | [18](https://adventofcode.com/2019/day/18) | [Many-Worlds Interpretation](https://adventofcode.com/2019/day/18) | [graph](tags/graph.md), [dijkstra](tags/dijkstra.md), [implicit-graph](tags/implicit-graph.md), [bitmask](tags/bitmask.md), [state-space-search](tags/state-space-search.md) | [day_18.ex](../lib/2019/day_18.ex) | |
171 | 176 | | 2020 | [20](https://adventofcode.com/2020/day/20) | [Jurassic Jigsaw](https://adventofcode.com/2020/day/20) | [geometry](tags/geometry.md), [rotation](tags/rotation.md), [half-done](tags/half-done.md) | [day_20.ex](../lib/2020/day_20.ex) | |
172 | 177 | | 2021 | [21](https://adventofcode.com/2021/day/21) | [Dirac Dice](https://adventofcode.com/2021/day/21) | [slow](tags/slow.md), [needs-improvement](tags/needs-improvement.md) | [day_21.ex](../lib/2021/day_21.ex) | |
173 | 178 | | 2022 | [15](https://adventofcode.com/2022/day/15) | [Beacon Exclusion Zone](https://adventofcode.com/2022/day/15) | [erlang](tags/erlang.md), [slow](tags/slow.md), [large-number](tags/large-number.md), [geometry2d](tags/geometry2d.md) | [day_15.ex](../lib/2022/day_15.ex) | |
|
0 commit comments