Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [6 10 5 8 9 NaN 23 9 7 3 21 43 NaN 4 6 7 8];
y_correct = [6 10 5 8 9 7 3 21 43 7 8];
assert(isequal(your_fcn_name(x),y_correct))
position =
6
x =
6 10 5 8 9 23 9 7 3 21 43 NaN 4 6 7 8
x =
6 10 5 8 9 9 7 3 21 43 NaN 4 6 7 8
x =
6 10 5 8 9 7 3 21 43 NaN 4 6 7 8
position =
10
x =
6 10 5 8 9 7 3 21 43 4 6 7 8
x =
6 10 5 8 9 7 3 21 43 6 7 8
x =
6 10 5 8 9 7 3 21 43 7 8
y =
6 10 5 8 9 7 3 21 43 7 8
|
2 | Pass |
x = [25 NaN 1 3];
y_correct = 25;
assert(isequal(your_fcn_name(x),y_correct))
position =
2
x =
25 1 3
x =
25 3
x =
25
y =
25
|
3 | Pass |
x = [ NaN 15 15 17 ]
y_correct = 17;
assert(isequal(your_fcn_name(x),y_correct))
x =
NaN 15 15 17
position =
1
x =
15 15 17
x =
15 17
x =
17
y =
17
|
624 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
390 Solvers
Create a Multiplication table matrix...
283 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!