Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Yeah in JS yesterday it took me about an hour to get it working, but way too slow! Still haven't been able to improve it. May need to start over.
It took me about an hour to write it in Python mostly because I was having a difficult time returning the solution even as I was able to print it.
What took me the longest time was to rewrite it in C++ as that is the language that I wanted to solve it.
Still there's the same problem with Python3, there's print() expression issue in test,
as well as another one i get, if needed:
Traceback (most recent call last):
File "main.py", line 14, in
testAndPrint(decodeMorse(decodeBits('1')), 'E')
File "/home/codewarrior/solution.py", line 6, in decodeMorse
return ' '.join(''.join(MORSE_CODE[letter] for letter in word.split(' ')) for word in morseCode.strip().split(' '))
File "/home/codewarrior/solution.py", line 6, in
return ' '.join(''.join(MORSE_CODE[letter] for letter in word.split(' ')) for word in morseCode.strip().split(' '))
File "/home/codewarrior/solution.py", line 6, in
return ' '.join(''.join(MORSE_CODE[letter] for letter in word.split(' ')) for word in morseCode.strip().split(' '))
KeyError: '1'
This comment is hidden because it contains spoiler information about the solution
Done.
See the discussion down below with MastaB. Especially the last comment contains some hints.
OK. "There are no traps in this format." is about hours, minutes, seconds:-)
I can be wrong but I don't think so. 35 guys passed the R kata. Either with
", "
or","
you can split... Moreover you passed the kata:-)