-
-
Save touchopia/d6ac41750917c158da8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Playground - noun: a place where people can play | |
| let lettersArray = Array("ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz") | |
| func rot13(input: String) -> String { | |
| return reduce(input, "") { result, letter in | |
| if let i = find(lettersArray, letter) { | |
| return result + lettersArray[i + 13] | |
| } else { | |
| return result + letter | |
| } | |
| } | |
| } | |
| rot13("Hello World!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment