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 |
txt = 'Hello World, from MATLAB' ;
nl = 5 ;
counts_correct = [0 0 0 1 1 0 0 1 0 0 0 3 0 0 2 0 0 1 0 0 0 0 1 0 0 0];
assert(isequal(nlWords_getCounts(txt, nl),counts_correct))
|
2 | Pass |
txt = 'UPPER converts any lowercase characters in the string str to the corresponding uppercase characters and leaves all other characters unchanged.'
nl = 9 ;
counts_correct = [3 0 3 1 5 0 1 1 0 0 0 1 0 2 1 2 0 2 2 0 2 0 1 0 0 0];
assert(isequal(nlWords_getCounts(txt, nl),counts_correct))
txt =
'UPPER converts any lowercase characters in the string str to the corresponding uppercase characters and leaves all other characters unchanged.'
|
3 | Pass |
txt = 'UPPER converts any lowercase characters in the string str to the corresponding uppercase characters and leaves all other characters unchanged.'
nl = 10 ;
counts_correct = [6 0 6 0 3 0 0 3 0 0 0 0 0 0 0 0 0 6 3 3 0 0 0 0 0 0];
assert(isequal(nlWords_getCounts(txt, nl),counts_correct))
txt =
'UPPER converts any lowercase characters in the string str to the corresponding uppercase characters and leaves all other characters unchanged.'
|
9833 Solvers
337 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
405 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!