This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1 2 3;
4 5 6;
7 8 9]
y_correct = [1 3;7 9]
assert(isequal(extractodd(x),y_correct))
x =
1 2 3
4 5 6
7 8 9
y_correct =
1 3
7 9
y =
1 3
7 9
|
2 | Pass |
x=[1 3 5 7 9]
y_correct = [1 5 9]
assert(isequal(extractodd(x),y_correct))
x =
1 3 5 7 9
y_correct =
1 5 9
|
14968 Solvers
1227 Solvers
303 Solvers
206 Solvers
183 Solvers