Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
% Clean user's function from some known jailbreaking mechanisms
functions={'!','feval','eval','str2func','str2num','regex','system','dos','unix','perl','assert','fopen','write','save','setenv','path','please','for','if','while','switch','round','roundn','fix','ceil','char','floor'};
assessFunctionAbsence(functions, 'FileName', 'fib.m');
|
2 | Pass |
n = 1;
f = 1;
assert(isequal(fib(n),f))
f =
0 1
f =
1
|
3 | Pass |
n = 6;
f = 8;
assert(isequal(fib(n),f))
f =
0 1 1 2 3 5 8
f =
8
|
4 | Pass |
n = 10;
f = 55;
assert(isequal(fib(n),f))
f =
0 1 1 2 3 5 8 13 21 34 55
f =
55
|
5 | Pass |
n = 20;
f = 6765;
assert(isequal(fib(n),f))
f =
Columns 1 through 15
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Columns 16 through 21
610 987 1597 2584 4181 6765
f =
6765
|
Return the 3n+1 sequence for n
6170 Solvers
Arrange Vector in descending order
4082 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
394 Solvers
Find the dimensions of a matrix
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!