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.
No problem!
Looks clean! I'm in the process of learning Rust and I didn't even know about
fold
. Thank you!Our solutions are pretty similar. I used fold instead of a for loop and a flag variable to detect double spaces.
Btw, the input is assumed to always be valid so
MORSE_CODE[p]
can't panic.