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))
x =
0 0 1 2 1 0
|
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))
x =
1 2 1 0 0 1 1 0 1 2 3 4 3 2 1
|
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))
x =
1 2 3 4 5 5 4 3 2 1 0 1 2 3 4 5 5 4 3 2 1
|
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))
x =
1 2 1 0 0 0 0 0 0 0 0 0 1 2 1
|
5 | Pass |
x = ones(1,101);
y_correct = [1:51,50:-1:1];
assert(isequal(distancesFromHoles(x),y_correct))
x =
Columns 1 through 29
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Columns 30 through 58
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 50 49 48 47 46 45 44
Columns 59 through 87
43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15
Columns 88 through 101
14 13 12 11 10 9 8 7 6 5 4 3 2 1
|
6 | Pass |
x = [repmat([1,0],[1,50]),1];
y_correct = x;
assert(isequal(distancesFromHoles(x),y_correct))
x =
Columns 1 through 29
1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
Columns 30 through 58
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0
Columns 59 through 87
1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1
Columns 88 through 101
0 1 0 1 0 1 0 1 0 1 0 1 0 1
|
649 Solvers
465 Solvers
Make one big string out of two smaller strings
1070 Solvers
196 Solvers
Simple equation: Annual salary
3402 Solvers