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

15 lines
224 B
JSON
Raw Normal View History

2020-07-05 21:00:06 +02:00
[
{
"input": [[4, 12, 1, 8]],
"output": [1, 4, 8, 12]
},
{
"input": [[6, 2, 9, 3, 4]],
"output": [2, 3, 4, 6, 9]
},
{
"input": [[2, 8, 5, 3, 9, 4, 1]],
"output": [1, 2, 3, 4, 5, 8, 9]
}
]