We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108222b commit 1e71b8aCopy full SHA for 1e71b8a
exercises/practice/atbash-cipher/.approaches/introduction.md
@@ -22,7 +22,7 @@ def encode(text: str):
22
def decode(text: str):
23
return "".join(chr.lower() for chr in text if chr.isalnum()).translate(ENCODING)
24
```
25
-Read more on this [approach here][approach-seperate-functions].
+Read more on this [approach here][approach-separate-functions].
26
27
## Approach: mono-function
28
Notice that there the majority of the code is repetitive?
0 commit comments