Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = pi;
y_correct = '3 + 1/(7 + 1/(16))';
assert(isequal(contfractions(x),y_correct))
|
2 | Pass |
%%
x = exp(1);
y_correct = '3 + 1/(-4 + 1/(2 + 1/(5 + 1/(-2 + 1/(-7)))))';
assert(isequal(contfractions(x),y_correct))
|
3 | Pass |
%%
x = sqrt(2);
y_correct = '1 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2 + 1/(2))))))))';
assert(isequal(contfractions(x),y_correct))
|
4 | Pass |
%%
x = (exp(1)-1)^-1;
y_correct = '1 + 1/(-2 + 1/(-3 + 1/(2 + 1/(5 + 1/(-2 + 1/(-7 + 1/(2)))))))';
assert(isequal(contfractions(x),y_correct))
|
5 | Pass |
%%
filetext = fileread('contfractions.m');
assert(isempty(strfind(filetext, 'switch')))
assert(isempty(strfind(filetext, 'case')))
|
735 Solvers
Extract leading non-zero digit
967 Solvers
Given a window, how many subsets of a vector sum positive
673 Solvers
Reverse the elements of an array
562 Solvers
262 Solvers