aboutsummaryrefslogtreecommitdiff
path: root/aoc-2022-dotnet/Day11/Program.fs
diff options
context:
space:
mode:
Diffstat (limited to 'aoc-2022-dotnet/Day11/Program.fs')
-rw-r--r--aoc-2022-dotnet/Day11/Program.fs4
1 files changed, 2 insertions, 2 deletions
diff --git a/aoc-2022-dotnet/Day11/Program.fs b/aoc-2022-dotnet/Day11/Program.fs
index 640a731..0fca3bf 100644
--- a/aoc-2022-dotnet/Day11/Program.fs
+++ b/aoc-2022-dotnet/Day11/Program.fs
@@ -41,7 +41,7 @@ type Monkey =
Inspections = m.Inspections + int64 (List.length throws) },
throws
- static member parseList input =
+ static member parseList =
let pid =
pstring "Monkey " >>. pint32
.>> pchar ':'
@@ -88,7 +88,7 @@ type Monkey =
Inspections = 0 }
let pmonkeys = sepBy1 pmonkey newline
- Util.parse pmonkeys input
+ Util.parse pmonkeys
let monkeyBusiness =
List.map Monkey.inspections