This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = ones(3);
assert(isequal(surrounded(x),y_correct))
B =
1 1 1
1 1 1
1 1 1
|
2 | Pass |
%%
x = [3 3 3;3 3 3];
y_correct = [1 1 1 1 1;1 3 3 3 1; 1 3 3 3 1; 1 1 1 1 1];
assert(isequal(surrounded(x),y_correct))
B =
1 1 1 1 1
1 3 3 3 1
1 3 3 3 1
1 1 1 1 1
|
Maximum running product for a string of numbers
1112 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
420 Solvers
413 Solvers
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!