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

35 lines
411 B
JSON
Raw Normal View History

[
{
"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"
}
]