exercism/elixir/simple-cipher/.exercism/config.json

27 lines
549 B
JSON
Raw Normal View History

2024-08-22 00:23:30 +00:00
{
"authors": [
"DoggettCK"
],
"contributors": [
"angelikatyborska",
"Cohen-Carlisle",
"devonestes",
"neenjaw",
"sotojuan"
],
"files": {
"solution": [
"lib/simple_cipher.ex"
],
"test": [
"test/simple_cipher_test.exs"
],
"example": [
".meta/example.ex"
]
},
"blurb": "Implement a simple shift cipher like Caesar and a more secure substitution cipher.",
"source": "Substitution Cipher at Wikipedia",
"source_url": "https://en.wikipedia.org/wiki/Substitution_cipher"
}