Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 'hi';
y_correct = 1;
assert(isequal(word_count(x),y_correct))
|
2 | Pass |
x = 'hi hi';
y_correct = 2;
assert(isequal(word_count(x),y_correct))
|
3 | Pass |
x = 'I love cody';
y_correct = 3;
assert(isequal(word_count(x),y_correct))
|
4 | Pass |
x = 'MATHWORK';
y_correct = 1;
assert(isequal(word_count(x),y_correct))
|
Flip the main diagonal of a matrix
506 Solvers
309 Solvers
516 Solvers
358 Solvers
201 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!