Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion 6-dictionaries/Morse Decoder/Morse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var lettersToMorse: [String: String] = [
"?": "..--..",
",": "--..--"
]

//Option Challenge 1 see above, ".", "!", "?". "," all have been added to the Morse code.

// Encoding a Message

Expand Down Expand Up @@ -123,3 +123,6 @@ for morseValue in morseCodeArray {
}
}
print (decodedMessage)


//Option Challenge 2 add .lowercased() after the var String englishText on line 52.