Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 667 Bytes

File metadata and controls

39 lines (23 loc) · 667 Bytes

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