Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
f = 1;
assert(isequal(fib(n),f))
|
2 | Pass |
n = 6;
f = 8;
assert(isequal(fib(n),f))
x =
1
x =
1 1
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
|
3 | Pass |
n = 10;
f = 55;
assert(isequal(fib(n),f))
x =
1
x =
1 1
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
x =
1 1 2 3 5 8 13
x =
1 1 2 3 5 8 13 21
x =
1 1 2 3 5 8 13 21 34
x =
1 1 2 3 5 8 13 21 34 55
|
4 | Pass |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
x =
1
x =
1 1
x =
1 1 2
x =
1 1 2 3
x =
1 1 2 3 5
x =
1 1 2 3 5 8
x =
1 1 2 3 5 8 13
x =
1 1 2 3 5 8 13 21
x =
1 1 2 3 5 8 13 21 34
x =
1 1 2 3 5 8 13 21 34 55
x =
1 1 2 3 5 8 13 21 34 55 89
x =
1 1 2 3 5 8 13 21 34 55 89 144
x =
1 1 2 3 5 8 13 21 34 55 89 144 233
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
x =
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
x =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 17
987 1597
x =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 18
987 1597 2584
x =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 19
987 1597 2584 4181
x =
Columns 1 through 15
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610
Columns 16 through 20
987 1597 2584 4181 6765
|
2515 Solvers
Back to basics 4 - Search Path
280 Solvers
Basic electricity in a dry situation
445 Solvers
185 Solvers
Predicting life and death of a memory-less light bulb
244 Solvers