diff --git a/Day7/Part1.js b/Day7/Part1.js index 3a620a8..6faa1be 100644 --- a/Day7/Part1.js +++ b/Day7/Part1.js @@ -1,6 +1,15 @@ import { readFileSync } from "fs"; const t0 = performance.now(); +const patterns = [ + "abcde", + "aabcd", + "aabbc", + "aaabc", + "aaabb", + "aaaab", + "aaaaa", +]; const input = readFileSync("input.txt").toString(); console.log(input);