Day Seven Part Two

This commit is contained in:
Lewis Dale 2023-12-07 13:09:13 +00:00
parent 3105abc935
commit 170cc7511b
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import {isEqual, omit, zip} from "lodash";
import {anyChar, int, newline, rest, space, whitespace} from "parjs";
import {stringify, manyBetween, between, then, manySepBy, manyTill} from "parjs/combinators";
import {anyChar, int, space, whitespace} from "parjs";
import {between, manySepBy, manyTill, stringify, then} from "parjs/combinators";
import fs from "fs";
const CardLetterScores = ['J', '2', '3', '4', '5', '6', '7', '8', '9', 'T', 'Q', 'K', 'A'];