adventOfCode/challenges/2020/17-conwayCubes/info.json
AKU 25f4d9d658
Add 2020 solutions
Signed-off-by: AKU <tom@tdpain.net>
2021-11-27 20:33:25 +00:00

19 lines
No EOL
357 B
JSON

{
"year": "2020",
"day": "17",
"title": "Conway Cubes",
"testCases": {
"one": [
{
"input": ".#.\n..#\n###\n",
"expected": 112
}
],
"two": [
{
"input": ".#.\n..#\n###\n",
"expected": 848
}
]
}
}