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 |
n = 5;
S = 40;
assert(isequal(FibSumSquares(n),S))
|
2 | Pass |
n = 8;
S = 714;
assert(isequal(FibSumSquares(n),S))
|
3 | Pass |
n = 11;
S = 12816;
assert(isequal(FibSumSquares(n),S))
|
4 | Pass |
n = 15;
S = 602070;
assert(isequal(FibSumSquares(n),S))
|
5 | Pass |
n = 21;
S = 193864606;
assert(isequal(FibSumSquares(n),S))
|
6 | Pass |
n = 26;
S = 23843770274;
assert(isequal(FibSumSquares(n),S))
|
5703 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
6282 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!