Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 3 5];
assert(isequal(n_odd_numbers(n),y_correct))
|
2 | Pass |
n = 1;
y_correct = [1];
assert(isequal(n_odd_numbers(n),y_correct))
|
3 | Pass |
n = 10;
y_correct = [1 3 5 7 9 11 13 15 17 19];
assert(isequal(n_odd_numbers(n),y_correct))
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
1800 Solvers
The sum of the numbers in the vector
426 Solvers
314 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!