diff --git a/src/day_four.ts b/src/day_four.ts index 7a909fa..64905d3 100644 --- a/src/day_four.ts +++ b/src/day_four.ts @@ -26,7 +26,6 @@ export class Scratchcard { get score() { const matches = this.matches; if (!matches.length) return 0; - if (matches.length === 1) return 1; return Math.pow(2, matches.length - 1); }