Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 3 5];
assert(isequal(n_odd_numbers(n),y_correct))
y =
1 3 5
|
2 | Pass |
n = 1;
y_correct = [1];
assert(isequal(n_odd_numbers(n),y_correct))
y =
1
|
3 | Pass |
n = 10;
y_correct = [1 3 5 7 9 11 13 15 17 19];
assert(isequal(n_odd_numbers(n),y_correct))
y =
1 3 5 7 9 11 13 15 17 19
|
614 Solvers
Make a random, non-repeating vector.
2809 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
167 Solvers
Find my daddy long leg (No 's')
632 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!