Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [3 3 2 1];
y_correct = 2;
assert(isequal(hIndex(x),y_correct))
y =
2
|
2 | Pass |
x = 4*ones(1,4);
y_correct = 4;
assert(isequal(hIndex(x),y_correct))
y =
4
|
3 | Pass |
x = zeros(1,1000);
y_correct = 0;
assert(isequal(hIndex(x),y_correct))
y =
0
|
4 | Pass |
x = [5 2 10 11 2 7 9 10 7];
y_correct = 6;
assert(isequal(hIndex(x),y_correct))
y =
6
|
Back to basics 23 - Triangular matrix
532 Solvers
Matrix with different incremental runs
194 Solvers
272 Solvers
Determine the number of odd integers in a vector
320 Solvers
151 Solvers