1
0
Fork 0
Monorepo for all old Advent of Code solutions
Go to file
Jonathan Chan ad9d3674f3 Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
.gitignore Day 1, done! (Late oops) 2017-12-02 09:41:43 -08:00
1.hs Day 12, plus some edits to days 1 and 2 2017-12-12 09:29:10 -08:00
1.txt Day 12, plus some edits to days 1 and 2 2017-12-12 09:29:10 -08:00
2.hs Day 12, plus some edits to days 1 and 2 2017-12-12 09:29:10 -08:00
2.txt Day 2, on time! 2017-12-02 10:43:59 -08:00
2_alt.hs Added alternate solution to Day 2-2 that doesn't use applicative. 2017-12-02 11:11:28 -08:00
3.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
4.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
4.txt Day 4 2017-12-12 09:28:32 -08:00
5.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
5.txt Day 5 (takes 40 seconds... too long??) 2017-12-12 09:28:56 -08:00
5_alt.hs Day 5 - alternate solution using unboxed vectors, but unfortunately they're not any faster 2017-12-12 09:29:05 -08:00
6.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
6.txt Day 6, part 1 2017-12-12 09:28:43 -08:00
7.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
7.txt Day 7, part 1 2017-12-12 09:28:56 -08:00
7_cumulate.txt Day 7, part 2 - finished, not very pretty but gets it done 2017-12-12 09:28:58 -08:00
7_tree.txt Day 7, part 2 - partial progress: made a tree, I guess? 2017-12-12 09:28:56 -08:00
8.hs Day 8 - Used scanl, made things more concise 2017-12-12 09:29:08 -08:00
8.txt Day 8, part 1 2017-12-12 09:29:02 -08:00
9.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
9.txt Day 9 - placed 917 and 905 on the leaderboardgit add . 2017-12-12 09:29:07 -08:00
10.hs Day 10 - condensed a lot of functions and used normal lists instead of Seq 2017-12-12 09:29:07 -08:00
10.txt Day 10 2017-12-12 09:29:07 -08:00
11.hs Minor refactorings of days 3, 4, 5, 6, 7, 9, 11, and removed alternate solution (i.e. the original one) for 9. 2017-12-12 09:29:10 -08:00
11.txt Day 11 2017-12-12 09:29:07 -08:00
12.hs Day 12 - minor refactoring 2017-12-12 09:29:10 -08:00
12.txt Day 12, plus some edits to days 1 and 2 2017-12-12 09:29:10 -08:00
README.md Create README.md 2017-12-12 09:28:40 -08:00

README.md

Advent of Code 2017

Hopefully most of these solutions are fairly self-explanatory. I'll write longer-length explanations for harder questions.

Posts

Day 3: Spiral Memory (problem description)