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-alphabet/input-output.json
2020-07-07 14:04:31 +02:00

7 lines
170 B
JSON

[
{
"input": [["JavaScript", "Apple", "Hello", "Car", "Orange", "Ice scream"]],
"output": ["Apple", "Car", "Hello", "Ice scream", "JavaScript", "Orange"]
}
]