Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [6 6 6 6 6 6 6 6 ];
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [6 6 6 1 6 6 6 6 ];
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [6 6 9 6 6 6 9 1 ];
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
3417 Solvers
Replace NaNs with the number that appears to its left in the row.
1710 Solvers
Back to basics 12 - Input Arguments
467 Solvers
Is this triangle right-angled?
1918 Solvers
Calculate square and cube of number
168 Solvers