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))
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
308 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
462 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!