Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5 6 7 8 9];
y_correct = [7 8 9];
assert(isequal(your_fcn_name(x),y_correct))
ans =
7 8 9
|
2 | Pass |
x = [1 2 3];
y_correct = [1 2 3];
assert(isequal(your_fcn_name(x),y_correct))
ans =
1 2 3
|
3 | Pass |
x = [0 0 0];
y_correct = [0 0 0];
assert(isequal(your_fcn_name(x),y_correct))
ans =
0 0 0
|
4 | Pass |
x = [3 3 3 1 1 1 2 3 4];
y_correct = [3 3 3];
assert(isequal(your_fcn_name(x),y_correct))
ans =
3 3 3
|
5 | Pass |
x = 1000:-1:1;
y_correct = [1000 999 998];
assert(isequal(your_fcn_name(x),y_correct))
ans =
1000 999 998
|
23003 Solvers
746 Solvers
Remove the small words from a list of words.
474 Solvers
261 Solvers
Find out total non zero element of matrix
147 Solvers