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))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
2261 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Create an n-by-n null matrix and fill with ones certain positions
269 Solvers
find the maximum element of the matrix
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!