Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:7;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
p =
7 6 5 4 3 2 1
y =
0
|
2 | Pass |
x = [7 6 3];
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
p =
7 6 3
y =
1
|
3 | Pass |
x = [-1 6 3];
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
p =
6 3 -1
y =
0
|
4 | Pass |
x = 20:-2:-4;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
p =
20 18 16 14 12 10 8 6 4 2 0 -2 -4
y =
1
|
1091 Solvers
874 Solvers
Remove the small words from a list of words.
672 Solvers
given 3 sides, find area of this triangle
680 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!