diff --git a/src/day_seven.ts b/src/day_seven.ts index 151f916..c558624 100644 --- a/src/day_seven.ts +++ b/src/day_seven.ts @@ -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'];