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

23 lines
297 B
JSON
Raw Normal View History

2020-07-05 19:01:27 +02:00
[
{
"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
}
]