Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(zero_count(x),y_correct))
ans =
[]
|
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))
ans =
[]
|
3 | Pass |
x = [0 0 0 0 0 0];
y_correct = 6;
assert(isequal(zero_count(x),y_correct))
ans =
[]
|
4 | Pass |
x = [0 0 1 0 0 1];
y_correct = [2 2];
assert(isequal(zero_count(x),y_correct))
ans =
[]
|
1600 Solvers
First non-zero element in each column
593 Solvers
132 Solvers
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
226 Solvers
556 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!