diff options
author | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-02 20:51:45 +0100 |
---|---|---|
committer | Tomasz Chojnacki <tomaszchojnacki2001@gmail.com> | 2023-01-02 20:51:45 +0100 |
commit | 6c747854c00b5f96038a726a90a7201fefd626bb (patch) | |
tree | de6e216ba84c8a959eef6cf09f3ba30073f95b2f | |
parent | 3818aa044af80968e55d5d6638583a236e39294e (diff) | |
download | gleam_aoc2020-6c747854c00b5f96038a726a90a7201fefd626bb.tar.gz gleam_aoc2020-6c747854c00b5f96038a726a90a7201fefd626bb.zip |
Fix print format
-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 |