diff options
Diffstat (limited to 'aoc-2022-dotnet/Day22/Program.fs')
-rw-r--r-- | aoc-2022-dotnet/Day22/Program.fs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aoc-2022-dotnet/Day22/Program.fs b/aoc-2022-dotnet/Day22/Program.fs index 7bb6b2d..4c69051 100644 --- a/aoc-2022-dotnet/Day22/Program.fs +++ b/aoc-2022-dotnet/Day22/Program.fs @@ -90,5 +90,5 @@ let wrap2 (Vec2 (x, y), d) = Vec2(x, y), t d let input = File.ReadAllText("input.txt") -printfn "%b" (solution wrap1 input = 103224) -printfn "%b" (solution wrap2 input = 189097) +printfn "%d" <| solution wrap1 input +printfn "%d" <| solution wrap2 input |