This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = -2:2;
y_correct = [0 0 1 1 1];
assert(isequal(HL(x),y_correct))
y =
0 0 1 0 0
y =
0 0 1 1 0
y =
0 0 1 1 1
|
2 | Pass |
%%
x = -3:3;
y_correct = [ 0 0 0 1 1 1 1];
assert(isequal(HL(x),y_correct))
y =
0 0 0 1 0 0 0
y =
0 0 0 1 1 0 0
y =
0 0 0 1 1 1 0
y =
0 0 0 1 1 1 1
|
298 Solvers
244 Solvers
378 Solvers
Who is the smartest MATLAB programmer?
469 Solvers
Back to Basics - Find no. of elements in a matrix?
163 Solvers