Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 4.5 3 1 3.33]; n = 4;
y_correct = 1;
assert(isequal(findMaxIndex(x,n),y_correct))
|
2 | Pass |
x = [2 4.5 3 1 3.33]; n = 5;
y_correct = 4;
assert(isequal(findMaxIndex(x,n),y_correct))
|
3 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01]; n = 1;
y_correct = 7;
assert(isequal(findMaxIndex(x,n),y_correct))
|
4 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01]; n = 8;
y_correct = 6;
assert(isequal(findMaxIndex(x,n),y_correct))
|
5 | Pass |
x = [2 4.5 3 1 3.33 eps inf 0.01 realmax realmin]; n = 2;
y_correct = 9;
assert(isequal(findMaxIndex(x,n),y_correct))
|
6 | Pass |
x = [-2.23 1 0 -6.65 2.63 -realmax inf 0]; n = 8
y_correct = 6;
assert(isequal(findMaxIndex(x,n),y_correct))
n =
8
|
7 | Pass |
x = [2 4.5 3.33 3 1 3.33]; n = 2;
y_correct = [3 6];
assert(isequal(findMaxIndex(x,n),y_correct))
|
8 | Pass |
x = [2 4.5 pi eps eps pi 0 pi 6]; n = 3;
y_correct = [3 6 8];
assert(isequal(findMaxIndex(x,n),y_correct))
|
1163 Solvers
Maximum running product for a string of numbers
1112 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
484 Solvers
364 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!