Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 2 2 1 3 2 1 4 5 1];
y_correct = 2;
assert(isequal(longrun(a),y_correct))
|
2 | Pass |
a = [1 1 1 2 2 2 3 3 3];
y_correct = [1 2 3];
assert(isequal(longrun(a),y_correct))
|
3 | Pass |
a = [-2 -2 -2 -2 -1 0 3];
y_correct = -2;
assert(isequal(longrun(a),y_correct))
|
4 | Pass |
a=[0 1 1 1 0 2 2 0 1 1 1 0];
y_correct = [1 1];
assert(isequal(longrun(a),y_correct))
|
5 | Pass |
a=[3 3 3 2 2 1 6]';
y_correct=3;
assert(isequal(longrun(a),y_correct))
|
6 | Pass |
a=[3 3 3 2 2 2 1 6]';
y_correct=[3 2]';
assert(isequal(longrun(a),y_correct))
|
7 | Pass |
a=[1 2 3 4 5]';
y_correct=a;
assert(isequal(longrun(a),y_correct))
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Set some matrix elements to zero
290 Solvers
376 Solvers
555 Solvers
Convert from Fahrenheit to Celsius
7118 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!