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 1;
5 6 7;
2 3 6];
output = [1 1 1;
1 1 1;
1 1 1]
assert(isequal(neighbors(x),output))
output =
1 1 1
1 1 1
1 1 1
out1 =
4 4 6
-3 -3 -1
out2 =
1 -1
1 1
1 3
x =
1 1 1
5 6 7
2 3 6
x =
1 1 1
1 1 1
2 3 6
x =
1 1 1
1 1 1
1 1 1
output =
1 1 1
1 1 1
1 1 1
|
2 | Pass |
x = [8 8 8;
4 4 4;
1 9 7]
output = [1 1 1;
1 1 1;
0 0 0]
assert(isequal(neighbors(x),output))
x =
8 8 8
4 4 4
1 9 7
output =
1 1 1
1 1 1
0 0 0
out1 =
-4 -4 -4
-3 5 3
out2 =
0 0
0 0
8 -2
x =
1 1 1
4 4 4
1 9 7
x =
1 1 1
1 1 1
1 9 7
x =
1 1 1
1 1 1
0 0 0
output =
1 1 1
1 1 1
0 0 0
|
3 | Pass |
x = [1 8 5;
4 10 22;
1 66 7]
output = [0 0 0;
0 0 0;
0 0 0]
assert(isequal(neighbors(x),output))
x =
1 8 5
4 10 22
1 66 7
output =
0 0 0
0 0 0
0 0 0
out1 =
3 2 17
-3 56 -15
out2 =
7 -3
6 12
65 -59
x =
0 0 0
4 10 22
1 66 7
x =
0 0 0
0 0 0
1 66 7
x =
0 0 0
0 0 0
0 0 0
output =
0 0 0
0 0 0
0 0 0
|
136 Solvers
Back to basics 25 - Valid variable names
253 Solvers
160 Solvers
370 Solvers
Count decimal digits of a number
135 Solvers