adventOfCode/17-conwayCubes/info.json
Tom aed18d1ac8
Day 17 (Python)
Third time lucky!
... it was not worth staying up until 1am for this
2020-12-18 00:53:41 +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
}
]
}
}