Transform Morse code data model to text
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