Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=[3 4 5];
b=[1 4 7 6];
y_correct = [1 7 11 11];
assert(isequal(rwpadd(a,b),y_correct))
|
2 | Pass |
a=[1 1 1 3 -2];
b=[1 3];
y_correct = [1 1 1 4 1];
assert(isequal(rwpadd(a,b),y_correct))
|
3 | Pass |
a=[1];
b=[1 2 3];
y_correct = [1 2 4];
assert(isequal(rwpadd(a,b),y_correct))
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Back to basics 25 - Valid variable names
293 Solvers
484 Solvers
5460 Solvers
Area of an equilateral triangle
2759 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!