This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5;...
6 7 8 9 10];
y_correct = [3 2 9 4 15;...
6 21 8 27 10];
assert(isequal(your_fcn_name(x),y_correct))
2 5
|
2 | Pass |
x =[40 71 5;...
66 4 10;...
18 28 83];
y_correct = [40 213 15;...
66 4 10;...
18 28 249];
assert(isequal(your_fcn_name(x),y_correct))
3 3
|
Determine whether a vector is monotonically increasing
9270 Solvers
Project Euler: Problem 10, Sum of Primes
555 Solvers
276 Solvers
414 Solvers
135 Solvers