Skip to content

Commit aec24f4

Browse files
committed
Update README.md
1 parent bb7b132 commit aec24f4

118 files changed

Lines changed: 1368 additions & 1651 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€ŽREADME.mdβ€Ž

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

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

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

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

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
<!-- AUTOGENERATED -- DO NOT EDIT -- use `mix gen_stats` -->
21
# Advent of Code 2016
32

4-
[Main Page](https://adventofcode.com/2016) | [Tests](/test/2016)
3+
[Home](../../README.md) | [2015](../2015/README.md) | 2016 | [2017](../2017/README.md) | [2018](../2018/README.md) | [2019](../2019/README.md) | [2021](../2021/README.md) | [2022](../2022/README.md) | [2023](../2023/README.md) | [2024](../2024/README.md)
54

6-
[2015](/lib/2015) | 2016 | [2017](/lib/2017) | [2018](/lib/2018) | [2019](/lib/2019) | [2020](/lib/2020) | [2021](/lib/2021) | [2022](/lib/2022) | [2023](/lib/2023) | [2024](/lib/2024)
5+
## ⭐ 20/50
76

7+
[rust](../../wiki/tags/rust.md)&nbsp;`3` [sequence](../../wiki/tags/sequence.md)&nbsp;`3` [count](../../wiki/tags/count.md)&nbsp;`2` [grid](../../wiki/tags/grid.md)&nbsp;`2` [matrix](../../wiki/tags/matrix.md)&nbsp;`2` [op-code](../../wiki/tags/op-code.md)&nbsp;`2` [slow](../../wiki/tags/slow.md)&nbsp;`2` [annoying](../../wiki/tags/annoying.md)&nbsp;`1` [checksum](../../wiki/tags/checksum.md)&nbsp;`1` [geometry2d](../../wiki/tags/geometry2d.md)&nbsp;`1` [md5](../../wiki/tags/md5.md)&nbsp;`1` [measurement](../../wiki/tags/measurement.md)&nbsp;`1` [optimization](../../wiki/tags/optimization.md)&nbsp;`1` [set](../../wiki/tags/set.md)&nbsp;`1` [unfold](../../wiki/tags/unfold.md)&nbsp;`1` [validation](../../wiki/tags/validation.md)&nbsp;`1` [visual-result](../../wiki/tags/visual-result.md)&nbsp;`1`
88

9-
## :trophy: 22/50
10-
11-
| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
12-
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
13-
| 1 | [No Time for a Taxicab](https://adventofcode.com/2016/day/1) | :1st_place_medal: | :snowflake: :snowflake: | [day_01.ex](/lib/2016/day_01.ex) | [day_01_test.exs](/test/2016/day_01_test.exs) | [grid](/wiki/tags.md#grid), [measurement](/wiki/tags.md#measurement), [set](/wiki/tags.md#set), [rust](/wiki/tags.md#rust) |
14-
| 2 | [Bathroom Security](https://adventofcode.com/2016/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2016/day_02.ex) | [day_02_test.exs](/test/2016/day_02_test.exs) | [grid](/wiki/tags.md#grid), [rust](/wiki/tags.md#rust) |
15-
| 3 | [Squares With Three Sides](https://adventofcode.com/2016/day/3) | :1st_place_medal: | :snowflake: | [day_03.ex](/lib/2016/day_03.ex) | [day_03_test.exs](/test/2016/day_03_test.exs) | [geometry2d](/wiki/tags.md#geometry2d), [matrix](/wiki/tags.md#matrix), [count](/wiki/tags.md#count) |
16-
| 4 | [Security Through Obscurity](https://adventofcode.com/2016/day/4) | :1st_place_medal: | :snowflake: | [day_04.ex](/lib/2016/day_04.ex) | [day_04_test.exs](/test/2016/day_04_test.exs) | [sequence](/wiki/tags.md#sequence), [checksum](/wiki/tags.md#checksum), [rust](/wiki/tags.md#rust) |
17-
| 5 | [How About a Nice Game of Chess?](https://adventofcode.com/2016/day/5) | :1st_place_medal: | :snowflake: :snowflake: | [day_05.ex](/lib/2016/day_05.ex) | [day_05_test.exs](/test/2016/day_05_test.exs) | [slow](/wiki/tags.md#slow), [md5](/wiki/tags.md#md5), [annoying](/wiki/tags.md#annoying) |
18-
| 6 | [Signals and Noise](https://adventofcode.com/2016/day/6) | :1st_place_medal: | :snowflake: | [day_06.ex](/lib/2016/day_06.ex) | [day_06_test.exs](/test/2016/day_06_test.exs) | [sequence](/wiki/tags.md#sequence), [optimization](/wiki/tags.md#optimization) |
19-
| 7 | [Internet Protocol Version 7](https://adventofcode.com/2016/day/7) | :1st_place_medal: | :snowflake: | [day_07.ex](/lib/2016/day_07.ex) | [day_07_test.exs](/test/2016/day_07_test.exs) | [validation](/wiki/tags.md#validation), [count](/wiki/tags.md#count) |
20-
| 8 | [Two-Factor Authentication](https://adventofcode.com/2016/day/8) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_08.ex](/lib/2016/day_08.ex) | [day_08_test.exs](/test/2016/day_08_test.exs) | [visual-result](/wiki/tags.md#visual-result), [matrix](/wiki/tags.md#matrix), [op-code](/wiki/tags.md#op-code) |
21-
| 9 | [Explosives in Cyberspace](https://adventofcode.com/2016/day/9) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_09.ex](/lib/2016/day_09.ex) | [day_09_test.exs](/test/2016/day_09_test.exs) | [sequence](/wiki/tags.md#sequence), [unfold](/wiki/tags.md#unfold) |
22-
| 10 | [Balance Bots](https://adventofcode.com/2016/day/10) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_10.ex](/lib/2016/day_10.ex) | [day_10_test.exs](/test/2016/day_10_test.exs) | [data-modelling](/wiki/tags.md#data-modelling), [genserver](/wiki/tags.md#genserver) |
23-
| 12 | [Leonardo's Monorail](https://adventofcode.com/2016/day/12) | :1st_place_medal: | :snowflake: :snowflake: | [day_12.ex](/lib/2016/day_12.ex) | [day_12_test.exs](/test/2016/day_12_test.exs) | [slow](/wiki/tags.md#slow), [op-code](/wiki/tags.md#op-code) |
24-
9+
| Day | Title | Difficulty | Tags | Source |
10+
|:---:|-------|:----------:|------|--------|
11+
| [1](https://adventofcode.com/2016/day/1) | [No Time for a Taxicab](https://adventofcode.com/2016/day/1) | 🟑 | [grid](../../wiki/tags/grid.md), [measurement](../../wiki/tags/measurement.md), [set](../../wiki/tags/set.md), [rust](../../wiki/tags/rust.md) | [day_01.ex](day_01.ex) |
12+
| [2](https://adventofcode.com/2016/day/2) | [Bathroom Security](https://adventofcode.com/2016/day/2) | 🟒 | [grid](../../wiki/tags/grid.md), [rust](../../wiki/tags/rust.md) | [day_02.ex](day_02.ex) |
13+
| [3](https://adventofcode.com/2016/day/3) | [Squares With Three Sides](https://adventofcode.com/2016/day/3) | 🟒 | [geometry2d](../../wiki/tags/geometry2d.md), [matrix](../../wiki/tags/matrix.md), [count](../../wiki/tags/count.md) | [day_03.ex](day_03.ex) |
14+
| [4](https://adventofcode.com/2016/day/4) | [Security Through Obscurity](https://adventofcode.com/2016/day/4) | 🟒 | [sequence](../../wiki/tags/sequence.md), [checksum](../../wiki/tags/checksum.md), [rust](../../wiki/tags/rust.md) | [day_04.ex](day_04.ex) |
15+
| [5](https://adventofcode.com/2016/day/5) | [How About a Nice Game of Chess?](https://adventofcode.com/2016/day/5) | 🟑 | [slow](../../wiki/tags/slow.md), [md5](../../wiki/tags/md5.md), [annoying](../../wiki/tags/annoying.md) | [day_05.ex](day_05.ex) |
16+
| [6](https://adventofcode.com/2016/day/6) | [Signals and Noise](https://adventofcode.com/2016/day/6) | 🟒 | [sequence](../../wiki/tags/sequence.md), [optimization](../../wiki/tags/optimization.md) | [day_06.ex](day_06.ex) |
17+
| [7](https://adventofcode.com/2016/day/7) | [Internet Protocol Version 7](https://adventofcode.com/2016/day/7) | 🟒 | [validation](../../wiki/tags/validation.md), [count](../../wiki/tags/count.md) | [day_07.ex](day_07.ex) |
18+
| [8](https://adventofcode.com/2016/day/8) | [Two-Factor Authentication](https://adventofcode.com/2016/day/8) | 🟠 | [visual-result](../../wiki/tags/visual-result.md), [matrix](../../wiki/tags/matrix.md), [op-code](../../wiki/tags/op-code.md) | [day_08.ex](day_08.ex) |
19+
| [9](https://adventofcode.com/2016/day/9) | [Explosives in Cyberspace](https://adventofcode.com/2016/day/9) | 🟠 | [sequence](../../wiki/tags/sequence.md), [unfold](../../wiki/tags/unfold.md) | [day_09.ex](day_09.ex) |
20+
| [12](https://adventofcode.com/2016/day/12) | [Leonardo's Monorail](https://adventofcode.com/2016/day/12) | 🟑 | [slow](../../wiki/tags/slow.md), [op-code](../../wiki/tags/op-code.md) | [day_12.ex](day_12.ex) |

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

Lines changed: 23 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
1-
<!-- AUTOGENERATED -- DO NOT EDIT -- use `mix gen_stats` -->
21
# Advent of Code 2017
32

4-
[Main Page](https://adventofcode.com/2017) | [Tests](/test/2017)
3+
[Home](../../README.md) | [2015](../2015/README.md) | [2016](../2016/README.md) | 2017 | [2018](../2018/README.md) | [2019](../2019/README.md) | [2021](../2021/README.md) | [2022](../2022/README.md) | [2023](../2023/README.md) | [2024](../2024/README.md)
54

6-
[2015](/lib/2015) | [2016](/lib/2016) | 2017 | [2018](/lib/2018) | [2019](/lib/2019) | [2020](/lib/2020) | [2021](/lib/2021) | [2022](/lib/2022) | [2023](/lib/2023) | [2024](/lib/2024)
5+
## ⭐ 36/50
76

7+
[not-fast-enough](../../wiki/tags/not-fast-enough.md)&nbsp;`3` [op-code](../../wiki/tags/op-code.md)&nbsp;`3` [rust](../../wiki/tags/rust.md)&nbsp;`3` [sequence](../../wiki/tags/sequence.md)&nbsp;`3` [hash](../../wiki/tags/hash.md)&nbsp;`2` [random-access](../../wiki/tags/random-access.md)&nbsp;`2` [slow](../../wiki/tags/slow.md)&nbsp;`2` [arithmetic](../../wiki/tags/arithmetic.md)&nbsp;`1` [bitwise](../../wiki/tags/bitwise.md)&nbsp;`1` [count](../../wiki/tags/count.md)&nbsp;`1` [disjoint-set](../../wiki/tags/disjoint-set.md)&nbsp;`1` [fsm](../../wiki/tags/fsm.md)&nbsp;`1` [half-done](../../wiki/tags/half-done.md)&nbsp;`1` [hexagon](../../wiki/tags/hexagon.md)&nbsp;`1` [matrix](../../wiki/tags/matrix.md)&nbsp;`1` [number-theory](../../wiki/tags/number-theory.md)&nbsp;`1` [reduction](../../wiki/tags/reduction.md)&nbsp;`1` [sliding-window](../../wiki/tags/sliding-window.md)&nbsp;`1` [spiral](../../wiki/tags/spiral.md)&nbsp;`1` [tree](../../wiki/tags/tree.md)&nbsp;`1` [validation](../../wiki/tags/validation.md)&nbsp;`1` [vector](../../wiki/tags/vector.md)&nbsp;`1`
88

9-
## :trophy: 34/50
10-
11-
| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
12-
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
13-
| 1 | [Inverse Captcha](https://adventofcode.com/2017/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2017/day_01.ex) | [day_01_test.exs](/test/2017/day_01_test.exs) | [sliding-window](/wiki/tags.md#sliding-window), [rust](/wiki/tags.md#rust) |
14-
| 2 | [Corruption Checksum](https://adventofcode.com/2017/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2017/day_02.ex) | [day_02_test.exs](/test/2017/day_02_test.exs) | [arithmetic](/wiki/tags.md#arithmetic), [sequence](/wiki/tags.md#sequence), [rust](/wiki/tags.md#rust) |
15-
| 3 | [Spiral Memory](https://adventofcode.com/2017/day/3) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_03.ex](/lib/2017/day_03.ex) | [day_03_test.exs](/test/2017/day_03_test.exs) | [spiral](/wiki/tags.md#spiral), [matrix](/wiki/tags.md#matrix) |
16-
| 4 | [High-Entropy Passphrases](https://adventofcode.com/2017/day/4) | :1st_place_medal: | :snowflake: | [day_04.ex](/lib/2017/day_04.ex) | [day_04_test.exs](/test/2017/day_04_test.exs) | [validation](/wiki/tags.md#validation), [rust](/wiki/tags.md#rust) |
17-
| 5 | [A Maze of Twisty Trampolines, All Alike](https://adventofcode.com/2017/day/5) | :1st_place_medal: | :snowflake: :snowflake: | [day_05.ex](/lib/2017/day_05.ex) | [day_05_test.exs](/test/2017/day_05_test.exs) | [not-fast-enough](/wiki/tags.md#not-fast-enough), [random-access](/wiki/tags.md#random-access) |
18-
| 6 | [Memory Reallocation](https://adventofcode.com/2017/day/6) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_06.ex](/lib/2017/day_06.ex) | [day_06_test.exs](/test/2017/day_06_test.exs) | [sequence](/wiki/tags.md#sequence), [reduction](/wiki/tags.md#reduction) |
19-
| 7 | [Recursive Circus](https://adventofcode.com/2017/day/7) | :2nd_place_medal: | :snowflake: :snowflake: :snowflake: | [day_07.ex](/lib/2017/day_07.ex) | [day_07_test.exs](/test/2017/day_07_test.exs) | [tree](/wiki/tags.md#tree) |
20-
| 8 | [I Heard You Like Registers](https://adventofcode.com/2017/day/8) | :1st_place_medal: | :snowflake: :snowflake: | [day_08.ex](/lib/2017/day_08.ex) | [day_08_test.exs](/test/2017/day_08_test.exs) | [op-code](/wiki/tags.md#op-code) |
21-
| 9 | [Stream Processing](https://adventofcode.com/2017/day/9) | :1st_place_medal: | :snowflake: :snowflake: | [day_09.ex](/lib/2017/day_09.ex) | [day_09_test.exs](/test/2017/day_09_test.exs) | [fsm](/wiki/tags.md#fsm) |
22-
| 10 | [Knot Hash](https://adventofcode.com/2017/day/10) | :1st_place_medal: | :snowflake: :snowflake: | [day_10.ex](/lib/2017/day_10.ex) | [day_10_test.exs](/test/2017/day_10_test.exs) | [hash](/wiki/tags.md#hash) |
23-
| 11 | [Hex Ed](https://adventofcode.com/2017/day/11) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: :snowflake: | [day_11.ex](/lib/2017/day_11.ex) | [day_11_test.exs](/test/2017/day_11_test.exs) | [hexagon](/wiki/tags.md#hexagon) |
24-
| 12 | [Digital Plumber](https://adventofcode.com/2017/day/12) | :1st_place_medal: | :snowflake: :snowflake: | [day_12.ex](/lib/2017/day_12.ex) | [day_12_test.exs](/test/2017/day_12_test.exs) | [disjoint-set](/wiki/tags.md#disjoint-set) |
25-
| 13 | [Packet Scanners](https://adventofcode.com/2017/day/13) | :1st_place_medal: | :snowflake: :snowflake: | [day_13.ex](/lib/2017/day_13.ex) | [day_13_test.exs](/test/2017/day_13_test.exs) | [sequence](/wiki/tags.md#sequence), [slow](/wiki/tags.md#slow) |
26-
| 14 | [Disk Defragmentation](https://adventofcode.com/2017/day/14) | :2nd_place_medal: | :snowflake: :snowflake: :snowflake: | [day_14.ex](/lib/2017/day_14.ex) | [day_14_test.exs](/test/2017/day_14_test.exs) | [not-fast-enough](/wiki/tags.md#not-fast-enough), [half-done](/wiki/tags.md#half-done), [hash](/wiki/tags.md#hash) |
27-
| 15 | [Dueling Generators](https://adventofcode.com/2017/day/15) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: :snowflake: | [day_15.ex](/lib/2017/day_15.ex) | [day_15_test.exs](/test/2017/day_15_test.exs) | [number-theory](/wiki/tags.md#number-theory), [bitwise](/wiki/tags.md#bitwise), [slow](/wiki/tags.md#slow) |
28-
| 16 | [Permutation Promenade](https://adventofcode.com/2017/day/16) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_16.ex](/lib/2017/day_16.ex) | [day_16_test.exs](/test/2017/day_16_test.exs) | [op-code](/wiki/tags.md#op-code), [count](/wiki/tags.md#count) |
29-
| 17 | [Spinlock](https://adventofcode.com/2017/day/17) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_17.ex](/lib/2017/day_17.ex) | [day_17_test.exs](/test/2017/day_17_test.exs) | [vector](/wiki/tags.md#vector), [random-access](/wiki/tags.md#random-access), [not-fast-enough](/wiki/tags.md#not-fast-enough) |
30-
| 18 | [Duet](https://adventofcode.com/2017/day/18) | :2nd_place_medal: | :snowflake: :snowflake: :snowflake: | [day_18.ex](/lib/2017/day_18.ex) | [day_18_test.exs](/test/2017/day_18_test.exs) | [data-modelling](/wiki/tags.md#data-modelling), [op-code](/wiki/tags.md#op-code), [half-done](/wiki/tags.md#half-done) |
31-
| 23 | [Coprocessor Conflagration](https://adventofcode.com/2017/day/23) | :2nd_place_medal: | :snowflake: :snowflake: :snowflake: | [day_23.ex](/lib/2017/day_23.ex) | [day_23_test.exs](/test/2017/day_23_test.exs) | [op-code](/wiki/tags.md#op-code) |
32-
9+
| Day | Title | Difficulty | Tags | Source |
10+
|:---:|-------|:----------:|------|--------|
11+
| [1](https://adventofcode.com/2017/day/1) | [Inverse Captcha](https://adventofcode.com/2017/day/1) | 🟒 | [sliding-window](../../wiki/tags/sliding-window.md), [rust](../../wiki/tags/rust.md) | [day_01.ex](day_01.ex) |
12+
| [2](https://adventofcode.com/2017/day/2) | [Corruption Checksum](https://adventofcode.com/2017/day/2) | 🟒 | [arithmetic](../../wiki/tags/arithmetic.md), [sequence](../../wiki/tags/sequence.md), [rust](../../wiki/tags/rust.md) | [day_02.ex](day_02.ex) |
13+
| [3](https://adventofcode.com/2017/day/3) | [Spiral Memory](https://adventofcode.com/2017/day/3) | 🟠 | [spiral](../../wiki/tags/spiral.md), [matrix](../../wiki/tags/matrix.md) | [day_03.ex](day_03.ex) |
14+
| [4](https://adventofcode.com/2017/day/4) | [High-Entropy Passphrases](https://adventofcode.com/2017/day/4) | 🟒 | [validation](../../wiki/tags/validation.md), [rust](../../wiki/tags/rust.md) | [day_04.ex](day_04.ex) |
15+
| [5](https://adventofcode.com/2017/day/5) | [A Maze of Twisty Trampolines, All Alike](https://adventofcode.com/2017/day/5) | 🟑 | [not-fast-enough](../../wiki/tags/not-fast-enough.md), [random-access](../../wiki/tags/random-access.md) | [day_05.ex](day_05.ex) |
16+
| [6](https://adventofcode.com/2017/day/6) | [Memory Reallocation](https://adventofcode.com/2017/day/6) | 🟠 | [sequence](../../wiki/tags/sequence.md), [reduction](../../wiki/tags/reduction.md) | [day_06.ex](day_06.ex) |
17+
| [7](https://adventofcode.com/2017/day/7) | [Recursive Circus](https://adventofcode.com/2017/day/7) | 🟠 | [tree](../../wiki/tags/tree.md) | [day_07.ex](day_07.ex) |
18+
| [8](https://adventofcode.com/2017/day/8) | [I Heard You Like Registers](https://adventofcode.com/2017/day/8) | 🟑 | [op-code](../../wiki/tags/op-code.md) | [day_08.ex](day_08.ex) |
19+
| [9](https://adventofcode.com/2017/day/9) | [Stream Processing](https://adventofcode.com/2017/day/9) | 🟑 | [fsm](../../wiki/tags/fsm.md) | [day_09.ex](day_09.ex) |
20+
| [10](https://adventofcode.com/2017/day/10) | [Knot Hash](https://adventofcode.com/2017/day/10) | 🟑 | [hash](../../wiki/tags/hash.md) | [day_10.ex](day_10.ex) |
21+
| [11](https://adventofcode.com/2017/day/11) | [Hex Ed](https://adventofcode.com/2017/day/11) | πŸ”΄ | [hexagon](../../wiki/tags/hexagon.md) | [day_11.ex](day_11.ex) |
22+
| [12](https://adventofcode.com/2017/day/12) | [Digital Plumber](https://adventofcode.com/2017/day/12) | 🟑 | [disjoint-set](../../wiki/tags/disjoint-set.md) | [day_12.ex](day_12.ex) |
23+
| [13](https://adventofcode.com/2017/day/13) | [Packet Scanners](https://adventofcode.com/2017/day/13) | 🟑 | [sequence](../../wiki/tags/sequence.md), [slow](../../wiki/tags/slow.md) | [day_13.ex](day_13.ex) |
24+
| [14](https://adventofcode.com/2017/day/14) | [Disk Defragmentation](https://adventofcode.com/2017/day/14) | 🟠 | [not-fast-enough](../../wiki/tags/not-fast-enough.md), [half-done](../../wiki/tags/half-done.md), [hash](../../wiki/tags/hash.md) | [day_14.ex](day_14.ex) |
25+
| [15](https://adventofcode.com/2017/day/15) | [Dueling Generators](https://adventofcode.com/2017/day/15) | πŸ”΄ | [number-theory](../../wiki/tags/number-theory.md), [bitwise](../../wiki/tags/bitwise.md), [slow](../../wiki/tags/slow.md) | [day_15.ex](day_15.ex) |
26+
| [16](https://adventofcode.com/2017/day/16) | [Permutation Promenade](https://adventofcode.com/2017/day/16) | 🟠 | [op-code](../../wiki/tags/op-code.md), [count](../../wiki/tags/count.md) | [day_16.ex](day_16.ex) |
27+
| [17](https://adventofcode.com/2017/day/17) | [Spinlock](https://adventofcode.com/2017/day/17) | 🟠 | [vector](../../wiki/tags/vector.md), [random-access](../../wiki/tags/random-access.md), [not-fast-enough](../../wiki/tags/not-fast-enough.md) | [day_17.ex](day_17.ex) |
28+
| [23](https://adventofcode.com/2017/day/23) | [Coprocessor Conflagration](https://adventofcode.com/2017/day/23) | 🟠 | [op-code](../../wiki/tags/op-code.md) | [day_23.ex](day_23.ex) |

0 commit comments

Comments
Β (0)