Last active
July 19, 2016 04:23
-
-
Save ijoshsmith/5f4c8005473d3408006f0e425531b4d0 to your computer and use it in GitHub Desktop.
Transform Morse code data model to text
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
func createMorseCodeText(from encodedMessage: EncodedMessage) -> String { | |
let transformation = MorseTransformation( | |
dot: ".", | |
dash: "-", | |
markSeparator: "", | |
symbolSeparator: " ", | |
termSeparator: "\n") | |
let characters = transformation.apply(to: encodedMessage) | |
return characters.joinWithSeparator("") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment