Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 'This is cool!';
y_correct = 1;
assert(isequal(punctuation(x),y_correct))
y =
1
|
2 | Pass |
%%
x = '!?! Are you kidding !?!';
y_correct = 6;
assert(isequal(punctuation(x),y_correct))
y =
6
|
3 | Pass |
%%
x = 'Nope....';
y_correct = 4;
assert(isequal(punctuation(x),y_correct))
y =
4
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
651 Solvers
3974 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
462 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!