This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'MATLAB is good';
y_correct = '--.--.-...--... ..... --.-------..';
assert(isequal(morseCoder(x),y_correct))
|
2 | Pass |
x = 'The quick brown fox jumps over the lazy dog';
y_correct = '-..... --.-..-..-.-.-.- -....-.---.---. ..-.----..- .---..---.--.... ---...-..-. -..... .-...---..-.-- -..-----.';
assert(isequal(morseCoder(x),y_correct))
|
3 | Pass |
x = '01234567890 is a pallindrome';
y_correct = '-----.----..---...--....-.....-....--...---..----.----- ..... .- .--..-.-...-....-.-...-.-----.';
assert(isequal(morseCoder(x),y_correct))
|
19329 Solvers
Remove all the words that end with "ain"
1292 Solvers
How long is the longest prime diagonal?
338 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!