Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = ones(3);
assert(isequal(surrounded(x),y_correct))
n =
1
m =
1
B =
1 1 1
1 1 1
1 1 1
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))
n =
2
m =
3
B =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
B =
1 1 1 1 1
1 3 3 3 1
1 3 3 3 1
1 1 1 1 1
|
3 | Pass |
x = ones(3,4);
y_correct = ones(5,6);
assert(isequal(surrounded(x),y_correct))
n =
3
m =
4
B =
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
B =
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
1 1 1 1 1 1
|
4 | Pass |
x = [0];
y_correct = ones(3); y_correct(2,2) = 0;
assert(isequal(surrounded(x),y_correct))
n =
1
m =
1
B =
1 1 1
1 1 1
1 1 1
B =
1 1 1
1 0 1
1 1 1
|
5 | Pass |
x = reshape(1:9,[3,3]);
y_correct = [1 1 1 1 1; 1 1 2 3 1; ...
1 4 5 6 1; 1 7 8 9 1; 1 1 1 1 1]';
assert(isequal(surrounded(x),y_correct))
n =
3
m =
3
B =
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
1 1 1 1 1
B =
1 1 1 1 1
1 1 4 7 1
1 2 5 8 1
1 3 6 9 1
1 1 1 1 1
|
2261 Solvers
Make one big string out of two smaller strings
1148 Solvers
613 Solvers
351 Solvers
Arrange vector in ascending order
624 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!