Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '0';
y_correct = 0;
assert(isequal(lengthOnes(x),y_correct))
s =
[]
e =
[]
y =
0
|
2 | Pass |
x = '1';
y_correct = 1;
assert(isequal(lengthOnes(x),y_correct))
s =
1
e =
1
y =
1
|
3 | Pass |
x = '01';
y_correct = 1;
assert(isequal(lengthOnes(x),y_correct))
s =
2
e =
2
y =
1
|
4 | Pass |
x = '10';
y_correct = 1;
assert(isequal(lengthOnes(x),y_correct))
s =
1
e =
1
y =
1
|
5 | Pass |
x = '00';
y_correct = 0;
assert(isequal(lengthOnes(x),y_correct))
s =
[]
e =
[]
y =
0
|
6 | Pass |
x = '11';
y_correct = 2;
assert(isequal(lengthOnes(x),y_correct))
s =
1
e =
2
y =
2
|
7 | Pass |
x = '1111111111';
y_correct = 10;
assert(isequal(lengthOnes(x),y_correct))
s =
1
e =
10
y =
10
|
8 | Pass |
x = '100101011111010011111';
y_correct = 5;
assert(isequal(lengthOnes(x),y_correct))
s =
1 4 6 8 14 17
e =
1 4 6 12 14 21
y =
5
|
9 | Pass |
x = '01010101010101010101010101';
y_correct = 1;
assert(isequal(lengthOnes(x),y_correct))
s =
2 4 6 8 10 12 14 16 18 20 22 24 26
e =
2 4 6 8 10 12 14 16 18 20 22 24 26
y =
1
|
10 | Pass |
x = '0101010111000101110001011100010100001110110100000000110001001000001110001000111010101001101100001111';
y_correct = 4;
assert(isequal(lengthOnes(x),y_correct))
s =
Columns 1 through 16
2 4 6 8 14 16 22 24 30 32 37 41 44 53 58 61
Columns 17 through 25
67 73 77 81 83 85 88 91 97
e =
Columns 1 through 16
2 4 6 10 14 18 22 26 30 32 39 42 44 54 58 61
Columns 17 through 25
69 73 79 81 83 85 89 92 100
y =
4
|
Return the largest number that is adjacent to a zero
3117 Solvers
794 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
384 Solvers
288 Solvers
Is this triangle right-angled?
1374 Solvers