1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-11-09 22:08:58 +01:00
programming-challenges/challenges/is-palindrome/input-output.json
2020-07-05 19:01:27 +02:00

23 lines
297 B
JSON

[
{
"input": ["kayak"],
"output": true
},
{
"input": ["hello"],
"output": false
},
{
"input": ["Was it a cat I saw"],
"output": true
},
{
"input": ["No lemon, no melon"],
"output": true
},
{
"input": ["achievement"],
"output": false
}
]