mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
19 lines
250 B
JSON
19 lines
250 B
JSON
[
|
|
{
|
|
"input": ["camel case"],
|
|
"output": "camelCase"
|
|
},
|
|
{
|
|
"input": ["say hello "],
|
|
"output": "sayHello"
|
|
},
|
|
{
|
|
"input": [" camel case word "],
|
|
"output": "camelCaseWord"
|
|
},
|
|
{
|
|
"input": [""],
|
|
"output": ""
|
|
}
|
|
]
|