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 |
x = [1 4 5 7 10 11 13 20 21 23 29];
y_correct = 4;
assert(isequal(fib_count(x),y_correct))
a =
21
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In fib_count (line 6)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
ans =
[]
|
2 | Pass |
x = 5:5:100;
y_correct = 2;
assert(isequal(fib_count(x),y_correct))
a =
21
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In fib_count (line 6)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
ans =
[]
|
3 | Pass |
%x = [2 2 3 3 3 3 3 3 5 5 6 6 6 7 86168291600238450732788312165664788095941068326060883324529903470149056115823592713458328176574447204501];
% Changed the test suite to a number that can be represented as an integer in DOUBLE
x = [2 2 3 3 3 3 3 3 5 5 6 6 6 7 8944394323791465];
y_correct = 3;
assert(isequal(fib_count(x),y_correct))
a =
21
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In fib_count (line 6)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
ans =
[]
|
4 | Pass |
x = [2 2 3 3 3 3 3 3 5 5 6 6 6 7 8944394323791464];
y_correct = 4;
assert(isequal(fib_count(x),y_correct))
a =
21
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In fib_count (line 6)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
ans =
[]
|
2500 Solvers
Back to basics 3 - Temp Directory
328 Solvers
Celsius to Fahrenheit converter
388 Solvers
376 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!