From 6c747854c00b5f96038a726a90a7201fefd626bb Mon Sep 17 00:00:00 2001 From: Tomasz Chojnacki Date: Mon, 2 Jan 2023 20:51:45 +0100 Subject: Fix print format --- aoc-2022-dotnet/Day22/Program.fs | 4 ++-- 1 file 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 -- cgit v1.2.3