Fibonacci (x+1)
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(logic(x),y_correct))
y =
1
|
2 | Pass |
x = 3;
y_correct = 3;
assert(isequal(logic(x),y_correct))
y =
1
y =
1
y =
2
y =
1
y =
3
|
3 | Pass |
x = 4;
y_correct = 5;
assert(isequal(logic(x),y_correct))
y =
1
y =
1
y =
2
y =
1
y =
3
y =
1
y =
1
y =
2
y =
5
|
4 | Pass |
x = 7;
y_correct = 21;
assert(isequal(logic(x), y_correct))
y =
1
y =
1
y =
2
y =
1
y =
3
y =
1
y =
1
y =
2
y =
5
y =
1
y =
1
y =
2
y =
1
y =
3
y =
8
y =
1
y =
1
y =
2
y =
1
y =
3
y =
1
y =
1
y =
2
y =
5
y =
13
y =
1
y =
1
y =
2
y =
1
y =
3
y =
1
y =
1
y =
2
y =
5
y =
1
y =
1
y =
2
y =
1
y =
3
y =
8
y =
21
|
927 Solvers
Replace multiples of 5 with NaN
358 Solvers
520 Solvers
311 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!