Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -2:2;
y_correct = [0 0 1 1 1];
assert(isequal(HL(x),y_correct))
|
2 | Pass |
x = -3:3;
y_correct = [0 0 0 1 1 1 1];
assert(isequal(HL(x),y_correct))
|
3 | Pass |
x = 1:10;
y_correct = ones(1,10);
assert(isequal(HL(x),y_correct))
|
4 | Pass |
x = -10:10;
y_correct = [zeros(1,10),ones(1,11)];
assert(isequal(HL(x),y_correct))
|
5 | Pass |
x = [1 0 -1 0 1 0 -1 0 1 0 -1 0 1 0 -1 0 1 0 -1 0 1];
y_correct = [1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 1];
assert(isequal(HL(x),y_correct))
|
Number of 1s in the Binary Representation of a Number
356 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
450 Solvers
372 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!