Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 0;
assert(isequal(zero_count(x),y_correct))
|
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))
|
3 | Pass |
x = [0 0 0 0 0 0];
y_correct = 6;
assert(isequal(zero_count(x),y_correct))
|
4 | Pass |
x = [0 0 1 0 0 1];
y_correct = [2 2];
assert(isequal(zero_count(x),y_correct))
|
Number of 1s in the Binary Representation of a Number
356 Solvers
Return elements unique to either input
550 Solvers
Construct an index vector from two input vectors in vectorized fashion
175 Solvers
Generate a random matrix A of (1,-1)
211 Solvers
There are 10 types of people in the world
310 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!