adventOfCode/challenges/2022/23-unstableDiffusion/info.json
AKP b22f34cdc6
2022-23
Signed-off-by: AKP <tom@tdpain.net>
2022-12-23 15:11:07 +00:00

25 lines
No EOL
681 B
JSON

{
"inputFile": "input.txt",
"testCases": {
"one": [
{
"input": ".....\n..##.\n..#..\n.....\n..##.\n.....",
"expected": "25"
},
{
"input": "....#..\n..###.#\n#...#.#\n.#...##\n#.###..\n##.#.##\n.#..#..\n",
"expected": "110"
}
],
"two": [
{
"input": ".....\n..##.\n..#..\n.....\n..##.\n.....",
"expected": "4"
},
{
"input": "....#..\n..###.#\n#...#.#\n.#...##\n#.###..\n##.#.##\n.#..#..\n",
"expected": "20"
}
]
}
}