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 | Pass |
x = 1+2i;
y_correct = 3;
assert(isequal(sumImagNum(x),y_correct))
|
2 | Pass |
x = -5-2i;
y_correct = -7;
assert(isequal(sumImagNum(x),y_correct))
|
3 | Pass |
x = 14*i;
y_correct = 14;
assert(isequal(sumImagNum(x),y_correct))
|
4 | Pass |
x = 8;
y_correct = 8;
assert(isequal(sumImagNum(x),y_correct))
|
280 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
746 Solvers
369 Solvers
2313 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!