aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet
diff options
context:
space:
mode:
authorTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-01-02 20:51:45 +0100
committerTomasz Chojnacki <tomaszchojnacki2001@gmail.com>2023-01-02 20:51:45 +0100
commit6c747854c00b5f96038a726a90a7201fefd626bb (patch)
treede6e216ba84c8a959eef6cf09f3ba30073f95b2f /aoc-2022-dotnet
parent3818aa044af80968e55d5d6638583a236e39294e (diff)
downloadgleam_aoc2020-6c747854c00b5f96038a726a90a7201fefd626bb.tar.gz
gleam_aoc2020-6c747854c00b5f96038a726a90a7201fefd626bb.zip
Fix print format
Diffstat (limited to 'aoc-2022-dotnet')
-rw-r--r--aoc-2022-dotnet/Day22/Program.fs4
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