Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1:7;
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
a =
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))
a =
7 6 3
y =
1
|
3 | Pass |
%%
x = [-1 6 3];
y_correct = 0;
assert(isequal(your_fcn_name(x),y_correct))
a =
6 3 -1
y =
0
|
4 | Pass |
%%
x = 20:-2:-4;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
a =
20 18 16 14 12 10 8 6 4 2 0 -2 -4
y =
1
|
Return the largest number that is adjacent to a zero
3108 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
196 Solvers
Change the sign of even index entries of the reversed vector
213 Solvers
394 Solvers
200 Solvers