Remove unnecessary code

This commit is contained in:
zuckerberg
2022-12-03 20:00:30 -07:00
parent fb7913ad3d
commit 0ca34d3bdc
3 changed files with 2 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ let
if b == 0 then mkLoss a
else if b == 1 then mkDraw a
else mkWin a;
makeBestMoves = m: map (pair: split pair (a: b: [a (bestMove a b)] )) m;
makeBestMoves = map (pair: split pair (a: b: [a (bestMove a b)] ));
in {
part1 = totalScore matches;
part2 = totalScore (makeBestMoves matches);