Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(zero_count(x),y_correct))
x =
1 1
|
2 | Pass |
x = [0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 1 1 0 0];
y_correct = [1 3 1 0 0 3 1 0 2];
assert(isequal(zero_count(x),y_correct))
x =
1 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 1 1 0 0
x =
1 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 1 1 0 0 1
|
3 | Pass |
x = [0 0 0 0 0 0];
y_correct = 6;
assert(isequal(zero_count(x),y_correct))
x =
1 0 0 0 0 0 0
x =
1 0 0 0 0 0 0 1
|
4 | Pass |
x = [0 0 1 0 0 1];
y_correct = [2 2];
assert(isequal(zero_count(x),y_correct))
x =
1 0 0 1 0 0 1
|
Least common multiple of many numbers
159 Solvers
153 Solvers
Return unique values without sorting
486 Solvers
310 Solvers
170 Solvers