This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
|
Find the alphabetic word product
2322 Solvers
927 Solvers
276 Solvers
Given a matrix, return the last eigen value
175 Solvers
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!