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 = pi; n = 50;
y_correct = [3 7 15 1 292 1 1 1 2 1 3 1 14 3 3 23 ...
1 1 7 4 35 1 1 1 2 3 3 3 3 1 1 14 6 4 5 1 7 1 5 1 1 3 18 2 1 2 4 2 96 2];
assert(isequal(finite_continued_fraction(x,n),y_correct))
|
2 | Pass |
x = 1; n = 10;
y_correct = 1;
assert(isequal(finite_continued_fraction(x,n),y_correct))
|
3 | Pass |
x = 5.2; n = 5;
y_correct = [5 4 1];
assert(isequal(finite_continued_fraction(x,n),y_correct))
|
4 | Pass |
x = 15625/6842; n = 7;
y_correct = [2 3 1 1 9 1 1];
assert(isequal(finite_continued_fraction(x,n),y_correct))
|
Remove all the words that end with "ain"
1292 Solvers
1050 Solvers
199 Solvers
345 Solvers
228 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!