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))
|
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))
|
Sort a list of complex numbers based on far they are from the origin.
3794 Solvers
299 Solvers
Getting the indices from a matrice
269 Solvers
279 Solvers
Sum the numbers on the main diagonal
375 Solvers