Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
txt = 'I love MATLAB and Cody, but I don''t like trivial matlab problems on cody.';
words = {'and';'but';'Cody';'don''t';'I';'like';'love';'MATLAB';'on';'problems';'trivial'};
count = [1; 1; 2; 1; 2; 1; 1; 2; 1; 1; 1];
[words1,count1] = wordscount(txt);
assert(isequal(lower(words1),lower(words))&isequal(count,count1))
|
2 | Fail |
txt = sprintf('I love MATLAB and Cody, but I don''t like trivial matlab problems on cody.\n\nUnfortunately, there are too many trivial problems on Cody.');
words = {'and';'are';'but';'cody';'don''t';'I';'like';'love';'many';'matlab';'on';'problems';'there';'too';'trivial';'unfortunately'};
count = [1; 1; 1; 3; 1; 2; 1; 1; 1; 2; 2; 2; 1; 1; 2; 1];
[words1,count1] = wordscount(txt);
assert(isequal(lower(words1),lower(words))&isequal(count,count1))
|
3 | Fail |
txt = ['What is Cody? ',newline,' Cody is a MATLAB Central game', newline ...
'that expands your knowledge of MATLAB.',newline,...
'With Cody, you can:',newline, ...
'Solve problems related to MATLAB code;',newline, ...
'Find problems, solutions, and players; ',newline, ...
'Use search directives to find content; ',newline, ...
'Challenge the community by contributing problems;',newline, ...
' Comment on any problem or solution;',newline,...
'Like a problem or a solution; ',newline, ...
'Earn badges;',newline,newline, ...
'Play now!'];
words = {'a';'and';'any';'badges';'by';'can';'central';'challenge';'code';'cody';'comment';...
'community';'content';'contributing';'directives';'earn';'expands';'find';'game';...
'is';'knowledge';'like';'matlab';'now';'of';'on';'or';'play';'players';'problem';...
'problems';'related';'search';'solution';'solutions';'solve';'that';'the';'to';...
'use';'what';'with';'you';'your'};
count = [3;1;1;1;1;1;1;1;1;3;1;1;1;1;1;1;1;2;1;2;1;1;3;1;1;1;2;1;1;2;3;1;1;2;1;1;1;1;2;1;1;1;1;1];
[words1,count1] = wordscount(txt);
assert(isequal(lower(words1),lower(words))&isequal(count,count1))
|
1091 Solvers
Find third Side of a right triangle given hypotenuse and a side. No * - or other functions allowed
141 Solvers
274 Solvers
Determine the number of odd integers in a vector
435 Solvers
Flip the vector from right to left
2670 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!