This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 27;
y_correct = 3;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
2 | Fail |
x = 1;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
3 | Fail |
x = 64;
y_correct = 4;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
4 | Fail |
x = 125;
y_correct = 5;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
5 | Fail |
x = 1000;
y_correct = 10;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
6 | Fail |
x = 729;
y_correct = 9;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
579 Solvers
184 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!