mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
15 lines
224 B
JSON
15 lines
224 B
JSON
[
|
|
{
|
|
"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]
|
|
}
|
|
]
|