This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 4;
a = [ 1 2 3 4;
8 7 6 5;
9 10 11 12;
16 15 14 13];
assert(isequal(a,back_and_forth(n)));
b =
1 2 3 4
b =
1 2 3 4
8 7 6 5
b =
1 2 3 4
8 7 6 5
9 10 11 12
b =
1 2 3 4
8 7 6 5
9 10 11 12
16 15 14 13
|
2 | Pass |
%%
n = 5;
a = [ 1 2 3 4 5;
10 9 8 7 6;
11 12 13 14 15;
20 19 18 17 16;
21 22 23 24 25];
assert(isequal(a,back_and_forth(n)));
b =
1 2 3 4 5
b =
1 2 3 4 5
10 9 8 7 6
b =
1 2 3 4 5
10 9 8 7 6
11 12 13 14 15
b =
1 2 3 4 5
10 9 8 7 6
11 12 13 14 15
20 19 18 17 16
b =
1 2 3 4 5
10 9 8 7 6
11 12 13 14 15
20 19 18 17 16
21 22 23 24 25
|
Increment a number, given its digits
505 Solvers
Back to basics 25 - Valid variable names
253 Solvers
Find a subset that divides the vector into equal halves
289 Solvers
Rotate input square matrix 90 degrees CCW without rot90
304 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers