Primarily F# solutions to as much of the 2022 Advent of Code as I can solve
- F# 100%
| day01 | ||
| day02 | ||
| day03 | ||
| day04 | ||
| day05 | ||
| day06 | ||
| day07 | ||
| day08 | ||
| day09 | ||
| day10 | ||
| day11 | ||
| day12 | ||
| day13 | ||
| day14 | ||
| day15 | ||
| day16 | ||
| day17 | ||
| day18 | ||
| day19 | ||
| day20 | ||
| day21 | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
Advent of Code 2022
My solutions to the 2022 Advent of Code.
Solutions in F# until I get stuck, using C# and potentially Python as fallback languages.
The code I write may be bad.
Setup
> dotnet --version
7.0.100
> dotnet fsi --version
Microsoft (R) F# Interactive version 12.4.0.0 for F# 7.0
> dotnet script --version
1.4.0
> python --version
Python 3.10.8
Running solutions/tests
F#
For F# solutions dotnet fsi day01/solution.fsx
For F# solutions including assertions dotnet fsi -d:DEBUG day01/solution.fsx
C#
For C# solutions dotnet script dayXX/solution.csx
Python
For Python solutions python dayXX/solution.py