mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
27 lines
369 B
JSON
27 lines
369 B
JSON
[
|
|
{
|
|
"input": [[2, 4, 0, 100, 4, 11, 2602, 36]],
|
|
"output": 11
|
|
},
|
|
{
|
|
"input": [[160, 3, 1719, 19, 11, 13, -21]],
|
|
"output": 160
|
|
},
|
|
{
|
|
"input": [[0, 1, 2]],
|
|
"output": 1
|
|
},
|
|
{
|
|
"input": [[1, 2, 3]],
|
|
"output": 2
|
|
},
|
|
{
|
|
"input": [[2, 6, 8, 10, 3]],
|
|
"output": 3
|
|
},
|
|
{
|
|
"input": [[1, 1, 0, 1, 1]],
|
|
"output": 0
|
|
}
|
|
]
|