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
ans =
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
ans =
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
ans =
0 0 0
0 0 0
0 0 0
|
2401 Solvers
Project Euler: Problem 7, Nth prime
522 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
377 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!