Skip to content

Commit

Permalink
Add Rust tags
Browse files Browse the repository at this point in the history
  • Loading branch information
code-shoily committed Aug 17, 2024
1 parent b8094b4 commit 382668e
Show file tree
Hide file tree
Showing 26 changed files with 91 additions and 71 deletions.
6 changes: 3 additions & 3 deletions lib/2015/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [Not Quite Lisp](https://adventofcode.com/2015/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2015/day_01.ex) | [day_01_test.exs](/test/2015/day_01_test.exs) | [sequence](/wiki/tags.md#sequence) |
| 2 | [I Was Told There Would Be No Math](https://adventofcode.com/2015/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2015/day_02.ex) | [day_02_test.exs](/test/2015/day_02_test.exs) | [geometry2d](/wiki/tags.md#geometry2d) |
| 3 | [Perfectly Spherical Houses in a Vacuum](https://adventofcode.com/2015/day/3) | :1st_place_medal: | :snowflake: | [day_03.ex](/lib/2015/day_03.ex) | [day_03_test.exs](/test/2015/day_03_test.exs) | [grid-walk](/wiki/tags.md#grid-walk), [set](/wiki/tags.md#set) |
| 1 | [Not Quite Lisp](https://adventofcode.com/2015/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2015/day_01.ex) | [day_01_test.exs](/test/2015/day_01_test.exs) | [sequence](/wiki/tags.md#sequence), [rust](/wiki/tags.md#rust) |
| 2 | [I Was Told There Would Be No Math](https://adventofcode.com/2015/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2015/day_02.ex) | [day_02_test.exs](/test/2015/day_02_test.exs) | [geometry2d](/wiki/tags.md#geometry2d), [rust](/wiki/tags.md#rust) |
| 3 | [Perfectly Spherical Houses in a Vacuum](https://adventofcode.com/2015/day/3) | :1st_place_medal: | :snowflake: | [day_03.ex](/lib/2015/day_03.ex) | [day_03_test.exs](/test/2015/day_03_test.exs) | [grid-walk](/wiki/tags.md#grid-walk), [set](/wiki/tags.md#set), [rust](/wiki/tags.md#rust) |
| 4 | [The Ideal Stocking Stuffer](https://adventofcode.com/2015/day/4) | :1st_place_medal: | :snowflake: :snowflake: | [day_04.ex](/lib/2015/day_04.ex) | [day_04_test.exs](/test/2015/day_04_test.exs) | [md5](/wiki/tags.md#md5), [annoying](/wiki/tags.md#annoying) |
| 5 | [Doesn't He Have Intern-Elves For This?](https://adventofcode.com/2015/day/5) | :1st_place_medal: | :snowflake: | [day_05.ex](/lib/2015/day_05.ex) | [day_05_test.exs](/test/2015/day_05_test.exs) | [string](/wiki/tags.md#string) |
| 6 | [Probably a Fire Hazard](https://adventofcode.com/2015/day/6) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_06.ex](/lib/2015/day_06.ex) | [day_06_test.exs](/test/2015/day_06_test.exs) | [grid](/wiki/tags.md#grid), [vector](/wiki/tags.md#vector), [reduction](/wiki/tags.md#reduction), [slow](/wiki/tags.md#slow) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2015/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2015.Day01 do
--- Day 1: Not Quite Lisp ---
Problem Link: https://adventofcode.com/2015/day/1
Difficulty: xs
Tags: sequence
Tags: sequence rust
"""
alias AdventOfCode.Helpers.InputReader

Expand Down
2 changes: 1 addition & 1 deletion lib/2015/day_02.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2015.Day02 do
--- Day 2: I Was Told There Would Be No Math ---
Problem Link: https://adventofcode.com/2015/day/2
Difficulty: xs
Tags: geometry2d
Tags: geometry2d rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2015/day_03.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2015.Day03 do
--- Day 3: Perfectly Spherical Houses in a Vacuum ---
Problem Link: https://adventofcode.com/2015/day/3
Difficulty: xs
Tags: grid-walk set
Tags: grid-walk set rust
"""
alias AdventOfCode.Helpers.InputReader

Expand Down
6 changes: 3 additions & 3 deletions lib/2016/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 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), [walk](/wiki/tags.md#walk), [measurement](/wiki/tags.md#measurement), [set](/wiki/tags.md#set) |
| 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), [walk](/wiki/tags.md#walk), [bounded-box](/wiki/tags.md#bounded-box) |
| 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), [walk](/wiki/tags.md#walk), [measurement](/wiki/tags.md#measurement), [set](/wiki/tags.md#set), [rust](/wiki/tags.md#rust) |
| 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), [walk](/wiki/tags.md#walk), [bounded-box](/wiki/tags.md#bounded-box), [rust](/wiki/tags.md#rust) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2016/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2016.Day01 do
--- Day 1: No Time for a Taxicab ---
Problem Link: https://adventofcode.com/2016/day/1
Difficulty: s
Tags: grid walk measurement set
Tags: grid walk measurement set rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2016/day_02.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2016.Day02 do
--- Day 2: Bathroom Security ---
Problem Link: https://adventofcode.com/2016/day/2
Difficulty: xs
Tags: grid walk bounded-box
Tags: grid walk bounded-box rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2016/day_04.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2016.Day04 do
--- Day 4: Security Through Obscurity ---
Problem Link: https://adventofcode.com/2016/day/4
Difficulty: xs
Tags: sequence checksum
Tags: sequence checksum rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
6 changes: 3 additions & 3 deletions lib/2017/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2017/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2017.Day01 do
--- Day 1: Inverse Captcha ---
Problem Link: https://adventofcode.com/2017/day/1
Difficulty: xs
Tags: sliding-window
Tags: sliding-window rust
"""
alias AdventOfCode.Helpers.InputReader

Expand Down
2 changes: 1 addition & 1 deletion lib/2017/day_02.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2017.Day02 do
--- Day 2: Corruption Checksum ---
Problem Link: https://adventofcode.com/2017/day/2
Difficulty: xs
Tags: arithmetic sequence
Tags: arithmetic sequence rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2017/day_04.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2017.Day04 do
--- Day 4: High-Entropy Passphrases ---
Problem Link: https://adventofcode.com/2017/day/4
Difficulty: xs
Tags: validation
Tags: validation rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2018/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [Chronal Calibration](https://adventofcode.com/2018/day/1) | :1st_place_medal: | :snowflake: :snowflake: | [day_01.ex](/lib/2018/day_01.ex) | [day_01_test.exs](/test/2018/day_01_test.exs) | [sequence](/wiki/tags.md#sequence), [set](/wiki/tags.md#set) |
| 1 | [Chronal Calibration](https://adventofcode.com/2018/day/1) | :1st_place_medal: | :snowflake: :snowflake: | [day_01.ex](/lib/2018/day_01.ex) | [day_01_test.exs](/test/2018/day_01_test.exs) | [sequence](/wiki/tags.md#sequence), [set](/wiki/tags.md#set), [rust](/wiki/tags.md#rust) |
| 2 | [Inventory Management System](https://adventofcode.com/2018/day/2) | :1st_place_medal: | :snowflake: :snowflake: | [day_02.ex](/lib/2018/day_02.ex) | [day_02_test.exs](/test/2018/day_02_test.exs) | [checksum](/wiki/tags.md#checksum), [string-result](/wiki/tags.md#string-result), [set](/wiki/tags.md#set) |
| 3 | [No Matter How You Slice It](https://adventofcode.com/2018/day/3) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_03.ex](/lib/2018/day_03.ex) | [day_03_test.exs](/test/2018/day_03_test.exs) | [grid](/wiki/tags.md#grid), [set](/wiki/tags.md#set), [not-fast-enough](/wiki/tags.md#not-fast-enough) |
| 4 | [Repose Record](https://adventofcode.com/2018/day/4) | :1st_place_medal: | :snowflake: :snowflake: | [day_04.ex](/lib/2018/day_04.ex) | [day_04_test.exs](/test/2018/day_04_test.exs) | [date-time](/wiki/tags.md#date-time), [sequence](/wiki/tags.md#sequence), [sort](/wiki/tags.md#sort), [map](/wiki/tags.md#map) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2018/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2018.Day01 do
--- Day 1: Chronal Calibration ---
Problem Link: https://adventofcode.com/2018/day/1
Difficulty: s
Tags: sequence set
Tags: sequence set rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2019/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [The Tyranny of the Rocket Equation](https://adventofcode.com/2019/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2019/day_01.ex) | [day_01_test.exs](/test/2019/day_01_test.exs) | [calculation](/wiki/tags.md#calculation) |
| 1 | [The Tyranny of the Rocket Equation](https://adventofcode.com/2019/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2019/day_01.ex) | [day_01_test.exs](/test/2019/day_01_test.exs) | [calculation](/wiki/tags.md#calculation), [rust](/wiki/tags.md#rust) |
| 2 | [1202 Program Alarm](https://adventofcode.com/2019/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2019/day_02.ex) | [day_02_test.exs](/test/2019/day_02_test.exs) | [op-code](/wiki/tags.md#op-code), [not-fast-enough](/wiki/tags.md#not-fast-enough), [int-code](/wiki/tags.md#int-code) |
| 3 | [Crossed Wires](https://adventofcode.com/2019/day/3) | :1st_place_medal: | :snowflake: | [day_03.ex](/lib/2019/day_03.ex) | [day_03_test.exs](/test/2019/day_03_test.exs) | [grid](/wiki/tags.md#grid), [walk](/wiki/tags.md#walk), [set](/wiki/tags.md#set), [not-fast-enough](/wiki/tags.md#not-fast-enough) |
| 4 | [Secure Container](https://adventofcode.com/2019/day/4) | :1st_place_medal: | :snowflake: | [day_04.ex](/lib/2019/day_04.ex) | [day_04_test.exs](/test/2019/day_04_test.exs) | [sequence](/wiki/tags.md#sequence), [inline-input](/wiki/tags.md#inline-input), [not-fast-enough](/wiki/tags.md#not-fast-enough) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2019/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2019.Day01 do
--- Day 1: The Tyranny of the Rocket Equation ---
Problem Link: https://adventofcode.com/2019/day/1
Difficulty: xs
Tags: calculation
Tags: calculation rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
4 changes: 2 additions & 2 deletions lib/2021/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [Sonar Sweep](https://adventofcode.com/2021/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2021/day_01.ex) | [day_01_test.exs](/test/2021/day_01_test.exs) | [sliding-window](/wiki/tags.md#sliding-window), [sequence](/wiki/tags.md#sequence) |
| 2 | [Dive!](https://adventofcode.com/2021/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2021/day_02.ex) | [day_02_test.exs](/test/2021/day_02_test.exs) | [grid](/wiki/tags.md#grid), [walk](/wiki/tags.md#walk) |
| 1 | [Sonar Sweep](https://adventofcode.com/2021/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2021/day_01.ex) | [day_01_test.exs](/test/2021/day_01_test.exs) | [sliding-window](/wiki/tags.md#sliding-window), [sequence](/wiki/tags.md#sequence), [rust](/wiki/tags.md#rust) |
| 2 | [Dive!](https://adventofcode.com/2021/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2021/day_02.ex) | [day_02_test.exs](/test/2021/day_02_test.exs) | [grid](/wiki/tags.md#grid), [walk](/wiki/tags.md#walk), [rust](/wiki/tags.md#rust) |
| 3 | [Binary Diagnostic](https://adventofcode.com/2021/day/3) | :1st_place_medal: | :snowflake: :snowflake: | [day_03.ex](/lib/2021/day_03.ex) | [day_03_test.exs](/test/2021/day_03_test.exs) | [calculation](/wiki/tags.md#calculation) |
| 4 | [Giant Squid](https://adventofcode.com/2021/day/4) | :1st_place_medal: | :snowflake: :snowflake: | [day_04.ex](/lib/2021/day_04.ex) | [day_04_test.exs](/test/2021/day_04_test.exs) | [grid](/wiki/tags.md#grid), [random-access](/wiki/tags.md#random-access), [optimization](/wiki/tags.md#optimization) |
| 5 | [Hydrothermal Venture](https://adventofcode.com/2021/day/5) | :1st_place_medal: | :snowflake: | [day_05.ex](/lib/2021/day_05.ex) | [day_05_test.exs](/test/2021/day_05_test.exs) | [set](/wiki/tags.md#set) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2021/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2021.Day01 do
--- Day 1: Sonar Sweep ---
Problem Link: https://adventofcode.com/2021/day/1
Difficulty: xs
Tags: sliding-window sequence
Tags: sliding-window sequence rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2021/day_02.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2021.Day02 do
--- Day 2: Dive! ---
Problem Link: https://adventofcode.com/2021/day/2
Difficulty: xs
Tags: grid walk
Tags: grid walk rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2022/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [Calorie Counting](https://adventofcode.com/2022/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2022/day_01.ex) | [day_01_test.exs](/test/2022/day_01_test.exs) | [sequence](/wiki/tags.md#sequence) |
| 1 | [Calorie Counting](https://adventofcode.com/2022/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2022/day_01.ex) | [day_01_test.exs](/test/2022/day_01_test.exs) | [sequence](/wiki/tags.md#sequence), [rust](/wiki/tags.md#rust) |
| 2 | [Rock Paper Scissors](https://adventofcode.com/2022/day/2) | :1st_place_medal: | :snowflake: | [day_02.ex](/lib/2022/day_02.ex) | [day_02_test.exs](/test/2022/day_02_test.exs) | [table-lookup](/wiki/tags.md#table-lookup) |
| 3 | [Rucksack Reorganization](https://adventofcode.com/2022/day/3) | :1st_place_medal: | :snowflake: | [day_03.ex](/lib/2022/day_03.ex) | [day_03_test.exs](/test/2022/day_03_test.exs) | [set](/wiki/tags.md#set) |
| 4 | [Camp Cleanup](https://adventofcode.com/2022/day/4) | :1st_place_medal: | :snowflake: | [day_04.ex](/lib/2022/day_04.ex) | [day_04_test.exs](/test/2022/day_04_test.exs) | [range](/wiki/tags.md#range), [set](/wiki/tags.md#set) |
Expand Down
2 changes: 1 addition & 1 deletion lib/2022/day_01.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule AdventOfCode.Y2022.Day01 do
--- Day 1: Calorie Counting ---
Problem Link: https://adventofcode.com/2022/day/1
Difficulty: xs
Tags: sequence
Tags: sequence rust
"""
alias AdventOfCode.Helpers.{InputReader, Transformers}

Expand Down
2 changes: 1 addition & 1 deletion lib/2023/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

| Day | Problem Page | Status | Difficulty | Solution Page | Test Page | Tags |
| :---: | :------: | :---: | :---: | :---: | :---: | :---: |
| 1 | [Trebuchet?!](https://adventofcode.com/2023/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2023/day_01.ex) | [day_01_test.exs](/test/2023/day_01_test.exs) | [regex](/wiki/tags.md#regex) |
| 1 | [Trebuchet?!](https://adventofcode.com/2023/day/1) | :1st_place_medal: | :snowflake: | [day_01.ex](/lib/2023/day_01.ex) | [day_01_test.exs](/test/2023/day_01_test.exs) | [regex](/wiki/tags.md#regex), [rust](/wiki/tags.md#rust) |
| 2 | [Cube Conundrum](https://adventofcode.com/2023/day/2) | :1st_place_medal: | :snowflake: :snowflake: | [day_02.ex](/lib/2023/day_02.ex) | [day_02_test.exs](/test/2023/day_02_test.exs) | [reduction](/wiki/tags.md#reduction) |
| 3 | [Gear Ratios](https://adventofcode.com/2023/day/3) | :1st_place_medal: | :snowflake: :snowflake: :snowflake: | [day_03.ex](/lib/2023/day_03.ex) | [day_03_test.exs](/test/2023/day_03_test.exs) | [grid-walk](/wiki/tags.md#grid-walk) |
| 4 | [Scratchcards](https://adventofcode.com/2023/day/4) | :1st_place_medal: | :snowflake: | [day_04.ex](/lib/2023/day_04.ex) | [day_04_test.exs](/test/2023/day_04_test.exs) | [set](/wiki/tags.md#set), [reduction](/wiki/tags.md#reduction) |
Expand Down
Loading

0 comments on commit 382668e

Please sign in to comment.