mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
35 lines
411 B
JSON
35 lines
411 B
JSON
|
[
|
||
|
{
|
||
|
"input": ["a"],
|
||
|
"output": "a"
|
||
|
},
|
||
|
{
|
||
|
"input": ["stress"],
|
||
|
"output": "t"
|
||
|
},
|
||
|
{
|
||
|
"input": ["moonmen"],
|
||
|
"output": "e"
|
||
|
},
|
||
|
{
|
||
|
"input": [""],
|
||
|
"output": ""
|
||
|
},
|
||
|
{
|
||
|
"input": ["abba"],
|
||
|
"output": ""
|
||
|
},
|
||
|
{
|
||
|
"input": ["aa"],
|
||
|
"output": ""
|
||
|
},
|
||
|
{
|
||
|
"input": ["~><#~><"],
|
||
|
"output": "#"
|
||
|
},
|
||
|
{
|
||
|
"input": ["hello world, eh?"],
|
||
|
"output": "w"
|
||
|
}
|
||
|
]
|