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 = 6;
out = 8;
assert(isequal(next_fibonacci(n),out));
y =
8
|
2 | Pass |
n = [12 40 50];
out = [13 55 55];
assert(isequal(next_fibonacci(n),out));
y =
13 55 55
|
3 | Pass |
n = 10.^(1:5);
out = [13 144 1597 10946 121393];
assert(isequal(next_fibonacci(n),out));
y =
13 144 1597 10946 121393
|
4 | Pass |
n = round(7.^(3:.5:7));
out = [377 987 2584 6765 17711 46368 121393 317811 832040];
assert(isequal(next_fibonacci(n),out));
y =
377 987 2584 6765 17711 46368 121393 317811 832040
|
606 Solvers
874 Solvers
519 Solvers
246 Solvers
2055 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!