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
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Flag largest magnitude swings as they occur
582 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!