Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6;7 8 9];
y_correct = [2 1 3;5 4 6;8 7 9];
assert(isequal(your_fcn_name(x),y_correct))
ans =
2 1 3
5 4 6
8 7 9
|
2 | Pass |
x = [1 2 3 4 5 6 7;7 6 5 4 3 2 1];
y_correct = [6 2 3 4 5 1 7;2 6 5 4 3 7 1];
assert(isequal(your_fcn_name(x),y_correct))
ans =
6 2 3 4 5 1 7
2 6 5 4 3 7 1
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35579 Solvers
4107 Solvers
233 Solvers
Determine the number of odd integers in a vector
435 Solvers
174 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!