Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
input_text = 'bla, BLA, bla';
occurrence_correct = [3 3 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0];
assert(isequal(letters_occurrence(input_text),occurrence_correct))
|
2 | Pass |
input_text = {'King Richard: A horse, a horse! My kingdom for a horse!'};
occurrence_correct = [4 0 1 2 3 1 2 4 3 0 2 0 2 2 5 0 0 6 3 0 0 0 0 0 1 0];
assert(isequal(letters_occurrence(input_text),occurrence_correct))
|
3 | Pass |
input_text = {'Thus much let me avow--'; 'You are not wrong, who deem'; 'That my days have been a dream;'};
occurrence_correct = [7 1 1 3 9 0 1 5 0 0 0 1 5 3 5 0 0 3 2 5 3 2 3 0 3 0];
assert(isequal(letters_occurrence(input_text),occurrence_correct))
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Reverse the elements of an array
687 Solvers
320 Solvers
Matlab Basics II - Log and natural log
136 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!