We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507ac80 commit 73adb90Copy full SHA for 73adb90
day15/Program.fs
@@ -40,7 +40,7 @@ let rec pushLeft (i, j) (map: Cell[][]) =
40
assert (map[i][j - 1] = Empty)
41
// delegate
42
pushLeft (i, j) map |> Option.get)
43
- | Robot -> failwith "!?"
+ | c -> failwithf "%A !?" c
44
45
let rec moveLeft (map: Cell[][]) =
46
let ri, rj = findRobot map
0 commit comments