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

19 lines
250 B
JSON
Raw Normal View History

2020-07-05 20:09:17 +02:00
[
{
"input": ["camel case"],
"output": "camelCase"
},
{
"input": ["say hello "],
"output": "sayHello"
},
{
"input": [" camel case word "],
"output": "camelCaseWord"
},
{
"input": [""],
"output": ""
}
]