adventOfCode/challenges/2022/01-calorieCounting/info.json
AKP 745b85aeaf
And so it begins (day 1)
Signed-off-by: AKP <tom@tdpain.net>
2022-12-01 07:29:38 +00:00

17 lines
No EOL
437 B
JSON

{
"inputFile": "input.txt",
"testCases": {
"one": [
{
"input": "1000\n2000\n3000\n\n4000\n\n5000\n6000\n\n7000\n8000\n9000\n\n10000\n",
"expected": "24000"
}
],
"two": [
{
"input": "1000\n2000\n3000\n\n4000\n\n5000\n6000\n\n7000\n8000\n9000\n\n10000\n",
"expected": "45000"
}
]
}
}