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 |
%%
seed = 1; n=5;
y_correct = {'1';'11';'21';'1211';'111221'};
assert(isequal(lasnumber(seed,n),y_correct))
|
2 | Pass |
%%
seed = 4; n=10;
y_correct = {'4';'14';'1114';'3114';'132114';'1113122114';'311311222114';'13211321322114';'1113122113121113222114';'31131122211311123113322114'};
assert(isequal(lasnumber(seed,n),y_correct))
|
3 | Pass |
%%
seed = 22; n=5;
y_correct = {'22';'22';'22';'22';'22'}
assert(isequal(lasnumber(seed,n),y_correct))
y_correct =
'22'
'22'
'22'
'22'
'22'
|
6064 Solvers
Least common multiple of many numbers
189 Solvers
Piecewise linear interpolation
299 Solvers
Fix the last element of a cell array
344 Solvers
331 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!