1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/pairwise/input-output.json

23 lines
291 B
JSON
Raw Normal View History

2020-07-08 19:56:30 +02:00
[
{
"input": [[1, 4, 2, 3, 0, 5], 7],
"output": 11
},
{
"input": [[1, 3, 2, 4], 4],
"output": 1
},
{
"input": [[1, 1, 1], 2],
"output": 1
},
{
"input": [[0, 0, 0, 0, 1, 1], 1],
"output": 10
},
{
"input": [[], 100],
"output": 0
}
]