
Count Morse
Everyone and their brother has surely heard of Morse codes, the classic encoding of text into binary symbols canonically denoted with dots and dashes. However, this coding is technically ternary since the pause between two letters is really a separate symbol, analogous to how whitespace between the words you are now reading are characters just the same as those with visible glyphs. Without the pauses separating the individual codewords, the same message could theoretically be decoded in exponentially many different ways.
Your function receives the message without pauses along with the letters whose encoding originally produced that message. Your function should count how many different permutations of those letters produce that exact same message. Each individual character is guaranteed to appear in letters at most once, all symbols and letters must be used.
Input: Two arguments: Morse encoded message and letters sequence as strings (str).
Output: Number of permutations as integer (int).
Examples:
assert count_morse("-------.", "omg") == 2 assert count_morse(".....-.-----", "morse") == 4 assert count_morse("-..----.......-..-.", "xtmisuf") == 4
Precondition:
- len(set(letters)) == len(letters)
This task is taken from the course CCPS 109 Computer Science I, Version of December 21, 2022, as taught by Ilkka Kokkarinen.