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

39 lines
No EOL
926 B
JSON

{
"year": "2020",
"day": "13",
"title": "Shuttle Search",
"testCases": {
"one": [
{
"input": "939\n7,13,x,x,59,x,31,19",
"expected": 295
}
],
"two": [
{
"input": "939\n7,13,x,x,59,x,31,19",
"expected": 1068781
},
{
"input": "1\n17,x,13,19",
"expected": 3417
},
{
"input": "1\n67,7,59,61",
"expected": 754018
},
{
"input": "1\n67,x,7,59,61",
"expected": 779210
},
{
"input": "1\n67,7,x,59,61",
"expected": 1261476
},
{
"input": "1\n1789,37,47,1889",
"expected": 1202161486
}
]
}
}