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
5 6 7 8
9 10 11 12
13 14 15 16
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
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
21 22 23 24 25
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
|
Return the largest number that is adjacent to a zero
3749 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3609 Solvers
669 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!