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 = [9 8 7;6 5 4;3 2 1];
assert(isequal(reverseit(x),y_correct))
|
2 | Pass |
x=ones(5)
y_correct=ones(5)
assert(isequal(reverseit(x),y_correct))
x =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
y_correct =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
|
3 | Pass |
x=[10 20;30 40;50 60;70 80;90 100]
y_correct=[100 90;80 70;60 50;40 30;20 10]
assert(isequal(reverseit(x),y_correct))
x =
10 20
30 40
50 60
70 80
90 100
y_correct =
100 90
80 70
60 50
40 30
20 10
|
469 Solvers
Find the index of n in magic(n)
129 Solvers
189 Solvers
136 Solvers
186 Solvers