Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6];
y_correct = [3 2 1;6 5 4];
assert(isequal(intercambiarCols(x),y_correct))
|
2 | Pass |
x = [1 2 3 4;5 6 7 8];
y_correct = [4 2 3 1;8 6 7 5];
assert(isequal(intercambiarCols(x),y_correct))
|
3 | Pass |
x = [1 2 3 4 5; 6 7 8 9 10];
y_correct = [5 2 3 4 1;10 7 8 9 6];
assert(isequal(intercambiarCols(x),y_correct))
|
1050 Solvers
Test if two numbers have the same digits
187 Solvers
Output any real number that is neither positive nor negative
316 Solvers
483 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!