forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests to morse_code.py (TheAlgorithms#5337)
* Add tests to morse_code.py @dhruvmanila @poyea Your reviews, please. * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
- Loading branch information
Showing
3 changed files
with
64 additions
and
98 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/usr/bin/env python3 | ||
|
||
""" | ||
Python program to translate to and from Morse code. | ||
https://en.wikipedia.org/wiki/Morse_code | ||
""" | ||
|
||
# fmt: off | ||
MORSE_CODE_DICT = { | ||
"A": ".-", "B": "-...", "C": "-.-.", "D": "-..", "E": ".", "F": "..-.", "G": "--.", | ||
"H": "....", "I": "..", "J": ".---", "K": "-.-", "L": ".-..", "M": "--", "N": "-.", | ||
"O": "---", "P": ".--.", "Q": "--.-", "R": ".-.", "S": "...", "T": "-", "U": "..-", | ||
"V": "...-", "W": ".--", "X": "-..-", "Y": "-.--", "Z": "--..", "1": ".----", | ||
"2": "..---", "3": "...--", "4": "....-", "5": ".....", "6": "-....", "7": "--...", | ||
"8": "---..", "9": "----.", "0": "-----", "&": ".-...", "@": ".--.-.", | ||
":": "---...", ",": "--..--", ".": ".-.-.-", "'": ".----.", '"': ".-..-.", | ||
"?": "..--..", "/": "-..-.", "=": "-...-", "+": ".-.-.", "-": "-....-", | ||
"(": "-.--.", ")": "-.--.-", "!": "-.-.--", " ": "/" | ||
} # Exclamation mark is not in ITU-R recommendation | ||
# fmt: on | ||
REVERSE_DICT = {value: key for key, value in MORSE_CODE_DICT.items()} | ||
|
||
|
||
def encrypt(message: str) -> str: | ||
""" | ||
>>> encrypt("Sos!") | ||
'... --- ... -.-.--' | ||
>>> encrypt("SOS!") == encrypt("sos!") | ||
True | ||
""" | ||
return " ".join(MORSE_CODE_DICT[char] for char in message.upper()) | ||
|
||
|
||
def decrypt(message: str) -> str: | ||
""" | ||
>>> decrypt('... --- ... -.-.--') | ||
'SOS!' | ||
""" | ||
return "".join(REVERSE_DICT[char] for char in message.split()) | ||
|
||
|
||
def main() -> None: | ||
""" | ||
>>> s = "".join(MORSE_CODE_DICT) | ||
>>> decrypt(encrypt(s)) == s | ||
True | ||
""" | ||
message = "Morse code here!" | ||
print(message) | ||
message = encrypt(message) | ||
print(message) | ||
message = decrypt(message) | ||
print(message) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file was deleted.
Oops, something went wrong.