This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 0 1 1 1 0];
y_correct = [0 0 1 2 1 0];
assert(isequal(distancesFromHoles(x),y_correct))
|
2 | Pass |
x = [1 1 1 0 0 1 1 0 1 1 1 1 1 1 1];
y_correct = [1 2 1 0 0 1 1 0 1 2 3 4 3 2 1];
assert(isequal(distancesFromHoles(x),y_correct))
|
3 | Pass |
x = [ones(1,10),0,ones(1,10)];
y_correct = [1:5,5:-1:0,1:5,5:-1:1];
assert(isequal(distancesFromHoles(x),y_correct))
|
4 | Pass |
x = [1 1 1 0 0 0 0 0 0 0 0 0 1 1 1];
y_correct = [1 2 1 0 0 0 0 0 0 0 0 0 1 2 1];
assert(isequal(distancesFromHoles(x),y_correct))
|
5 | Pass |
x = ones(1,101);
y_correct = [1:51,50:-1:1];
assert(isequal(distancesFromHoles(x),y_correct))
|
6 | Pass |
x = [repmat([1,0],[1,50]),1];
y_correct = x;
assert(isequal(distancesFromHoles(x),y_correct))
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
2197 Solvers
192 Solvers
584 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!