Skip to content

Commit

Permalink
Add placeholder for in progress solutions
Browse files Browse the repository at this point in the history
  • Loading branch information
manuphatak committed Jan 16, 2021
1 parent 658a135 commit c090d55
Showing 1 changed file with 27 additions and 22 deletions.
49 changes: 27 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,33 @@ Solutions to adventofcode.com/2020

## [Solutions](https://github.com/manuphatak/HaskellAdventOfCode2020/pulls?q=is%3Apr+label%3Asolution+sort%3Acreated-asc)

| PR | Problem | Solution | Specs |
| ----------------------------------------------------------------------- | --------------------------- | ---------------------------------------------- | -------------------------------------------------------- |
| [PR #2](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/2) | Day 1: Report Repair | [src/Day01/Solution.hs](src/Day01/Solution.hs) | [test/Day01/SolutionSpec.hs](test/Day01/SolutionSpec.hs) |
| [PR #4](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/4) | Day 2: Password Philosophy | [src/Day02/Solution.hs](src/Day02/Solution.hs) | [test/Day02/SolutionSpec.hs](test/Day02/SolutionSpec.hs) |
| [PR #5](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/5) | Day 3: Toboggan Trajectory | [src/Day03/Solution.hs](src/Day03/Solution.hs) | [test/Day03/SolutionSpec.hs](test/Day03/SolutionSpec.hs) |
| [PR #6](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/6) | Day 4: Passport Processing | [src/Day04/Solution.hs](src/Day04/Solution.hs) | [test/Day04/SolutionSpec.hs](test/Day04/SolutionSpec.hs) |
| [PR #7](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/7) | Day 5: Binary Boarding | [src/Day05/Solution.hs](src/Day05/Solution.hs) | [test/Day05/SolutionSpec.hs](test/Day05/SolutionSpec.hs) |
| [PR #8](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/8) | Day 6: Custom Customs | [src/Day06/Solution.hs](src/Day06/Solution.hs) | [test/Day06/SolutionSpec.hs](test/Day06/SolutionSpec.hs) |
| [PR #12](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/12) | Day 7: Handy Haversacks | [src/Day07/Solution.hs](src/Day07/Solution.hs) | [test/Day07/SolutionSpec.hs](test/Day07/SolutionSpec.hs) |
| [PR #13](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/13) | Day 8: Handheld Halting | [src/Day08/Solution.hs](src/Day08/Solution.hs) | [test/Day08/SolutionSpec.hs](test/Day08/SolutionSpec.hs) |
| [PR #15](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/15) | Day 9: Encoding Error | [src/Day09/Solution.hs](src/Day09/Solution.hs) | [test/Day09/SolutionSpec.hs](test/Day09/SolutionSpec.hs) |
| [PR #18](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/18) | Day 10: Adapter Array | [src/Day10/Solution.hs](src/Day10/Solution.hs) | [test/Day10/SolutionSpec.hs](test/Day10/SolutionSpec.hs) |
| [PR #19](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/19) | Day 11: Seating System | [src/Day11/Solution.hs](src/Day11/Solution.hs) | [test/Day11/SolutionSpec.hs](test/Day11/SolutionSpec.hs) |
| [PR #21](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/21) | Day 12: Rain Risk | [src/Day12/Solution.hs](src/Day12/Solution.hs) | [test/Day12/SolutionSpec.hs](test/Day12/SolutionSpec.hs) |
| [PR #23](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/23) | Day 13: Shuttle Search | [src/Day13/Solution.hs](src/Day13/Solution.hs) | [test/Day13/SolutionSpec.hs](test/Day13/SolutionSpec.hs) |
| [PR #24](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/24) | Day 14: Docking Data | [src/Day14/Solution.hs](src/Day14/Solution.hs) | [test/Day14/SolutionSpec.hs](test/Day14/SolutionSpec.hs) |
| [PR #26](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/26) | Day 16: Ticket Translation | [src/Day16/Solution.hs](src/Day16/Solution.hs) | [test/Day16/SolutionSpec.hs](test/Day16/SolutionSpec.hs) |
| [PR #30](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/30) | Day 17: Conway Cubes | [src/Day17/Solution.hs](src/Day17/Solution.hs) | [test/Day17/SolutionSpec.hs](test/Day17/SolutionSpec.hs) |
| [PR #31](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/31) | Day 18: Operation Order | [src/Day18/Solution.hs](src/Day18/Solution.hs) | [test/Day18/SolutionSpec.hs](test/Day18/SolutionSpec.hs) |
| [PR #34](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/34) | Day 20: Jurassic Jigsaw | [src/Day20/Solution.hs](src/Day20/Solution.hs) | [test/Day20/SolutionSpec.hs](test/Day20/SolutionSpec.hs) |
| [PR #35](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/35) | Day 21: Allergen Assessment | [src/Day21/Solution.hs](src/Day21/Solution.hs) | [test/Day21/SolutionSpec.hs](test/Day21/SolutionSpec.hs) |
| [PR #44](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/44) | Day 24: Lobby Layout | [src/Day24/Solution.hs](src/Day24/Solution.hs) | [test/Day24/SolutionSpec.hs](test/Day24/SolutionSpec.hs) |
| PR | Problem | Solution | Specs |
| ----------------------------------------------------------------------- | ------------------------------- | ---------------------------------------------- | -------------------------------------------------------- |
| [PR #2](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/2) | Day 1: Report Repair | [src/Day01/Solution.hs](src/Day01/Solution.hs) | [test/Day01/SolutionSpec.hs](test/Day01/SolutionSpec.hs) |
| [PR #4](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/4) | Day 2: Password Philosophy | [src/Day02/Solution.hs](src/Day02/Solution.hs) | [test/Day02/SolutionSpec.hs](test/Day02/SolutionSpec.hs) |
| [PR #5](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/5) | Day 3: Toboggan Trajectory | [src/Day03/Solution.hs](src/Day03/Solution.hs) | [test/Day03/SolutionSpec.hs](test/Day03/SolutionSpec.hs) |
| [PR #6](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/6) | Day 4: Passport Processing | [src/Day04/Solution.hs](src/Day04/Solution.hs) | [test/Day04/SolutionSpec.hs](test/Day04/SolutionSpec.hs) |
| [PR #7](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/7) | Day 5: Binary Boarding | [src/Day05/Solution.hs](src/Day05/Solution.hs) | [test/Day05/SolutionSpec.hs](test/Day05/SolutionSpec.hs) |
| [PR #8](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/8) | Day 6: Custom Customs | [src/Day06/Solution.hs](src/Day06/Solution.hs) | [test/Day06/SolutionSpec.hs](test/Day06/SolutionSpec.hs) |
| [PR #12](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/12) | Day 7: Handy Haversacks | [src/Day07/Solution.hs](src/Day07/Solution.hs) | [test/Day07/SolutionSpec.hs](test/Day07/SolutionSpec.hs) |
| [PR #13](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/13) | Day 8: Handheld Halting | [src/Day08/Solution.hs](src/Day08/Solution.hs) | [test/Day08/SolutionSpec.hs](test/Day08/SolutionSpec.hs) |
| [PR #15](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/15) | Day 9: Encoding Error | [src/Day09/Solution.hs](src/Day09/Solution.hs) | [test/Day09/SolutionSpec.hs](test/Day09/SolutionSpec.hs) |
| [PR #18](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/18) | Day 10: Adapter Array | [src/Day10/Solution.hs](src/Day10/Solution.hs) | [test/Day10/SolutionSpec.hs](test/Day10/SolutionSpec.hs) |
| [PR #19](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/19) | Day 11: Seating System | [src/Day11/Solution.hs](src/Day11/Solution.hs) | [test/Day11/SolutionSpec.hs](test/Day11/SolutionSpec.hs) |
| [PR #21](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/21) | Day 12: Rain Risk | [src/Day12/Solution.hs](src/Day12/Solution.hs) | [test/Day12/SolutionSpec.hs](test/Day12/SolutionSpec.hs) |
| [PR #23](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/23) | Day 13: Shuttle Search | [src/Day13/Solution.hs](src/Day13/Solution.hs) | [test/Day13/SolutionSpec.hs](test/Day13/SolutionSpec.hs) |
| [PR #24](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/24) | Day 14: Docking Data | [src/Day14/Solution.hs](src/Day14/Solution.hs) | [test/Day14/SolutionSpec.hs](test/Day14/SolutionSpec.hs) |
| [PR #25](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/25) | Day 15: Rambunctious Recitation | `[in progress, 2 stars]` | `[in progress]` |
| [PR #26](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/26) | Day 16: Ticket Translation | [src/Day16/Solution.hs](src/Day16/Solution.hs) | [test/Day16/SolutionSpec.hs](test/Day16/SolutionSpec.hs) |
| [PR #30](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/30) | Day 17: Conway Cubes | [src/Day17/Solution.hs](src/Day17/Solution.hs) | [test/Day17/SolutionSpec.hs](test/Day17/SolutionSpec.hs) |
| [PR #31](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/31) | Day 18: Operation Order | [src/Day18/Solution.hs](src/Day18/Solution.hs) | [test/Day18/SolutionSpec.hs](test/Day18/SolutionSpec.hs) |
| [PR #32](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/32) | Day 19: Monster Messages | `[in progress, 1 star ]` | `[in progress]` |
| [PR #34](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/34) | Day 20: Jurassic Jigsaw | [src/Day20/Solution.hs](src/Day20/Solution.hs) | [test/Day20/SolutionSpec.hs](test/Day20/SolutionSpec.hs) |
| [PR #35](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/35) | Day 21: Allergen Assessment | [src/Day21/Solution.hs](src/Day21/Solution.hs) | [test/Day21/SolutionSpec.hs](test/Day21/SolutionSpec.hs) |
| [PR #38](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/38) | Day 22: Crab Combat | `[in progress, 1 star ]` | `[in progress]` |
| [PR #40](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/40) | Day 23: Crab Cups | `[in progress, 2 stars]` | `[in progress]` |
| [PR #44](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/44) | Day 24: Lobby Layout | [src/Day24/Solution.hs](src/Day24/Solution.hs) | [test/Day24/SolutionSpec.hs](test/Day24/SolutionSpec.hs) |
| [PR #45](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/45) | Day 25: Combo Breaker | `[in progress, 1 star ]` | `[in progress]` |

<!-- | [PR #25](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/25) | Day 15: Rambunctious Recitation | [src/Day15/Solution.hs](src/Day15/Solution.hs) | [test/Day15/SolutionSpec.hs](test/Day15/SolutionSpec.hs) | -->
<!-- | [PR #32](https://github.com/manuphatak/HaskellAdventOfCode2020/pull/32) | Day 19: Monster Messages | [src/Day19/Solution.hs](src/Day19/Solution.hs) | [test/Day19/SolutionSpec.hs](test/Day19/SolutionSpec.hs) | -->
Expand Down

0 comments on commit c090d55

Please sign in to comment.