1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/challenges/caesar-cipher/input-output.json
2020-10-21 11:30:34 +02:00

19 lines
392 B
JSON

[
{
"input": ["ANTHONY", 2],
"output": "YLRFMLW"
},
{
"input": ["THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG", 3],
"output": "QEB NRFZH YOLTK CLU GRJMP LSBO QEB IXWV ALD"
},
{
"input": ["PROGRAMMING CHALLENGES IS AWESOME", 14],
"output": "BDASDMYYUZS OTMXXQZSQE UE MIQEAYQ"
},
{
"input": ["JVUNYHABSHAPVUZ", 7],
"output": "CONGRATULATIONS"
}
]