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;
y_correct = {'1'};
assert(isequal(naturalnumbers(x),y_correct))
y =
1×1 cell array
{'1'}
|
2 | Pass |
x = 11;
y_correct = {'1','2','3','4','5','6','7','8','9','10','11'};
assert(isequal(naturalnumbers(x),y_correct))
y =
1×1 cell array
{'1'}
y =
1×2 cell array
{'1'} {'2'}
y =
1×3 cell array
{'1'} {'2'} {'3'}
y =
1×4 cell array
{'1'} {'2'} {'3'} {'4'}
y =
1×5 cell array
{'1'} {'2'} {'3'} {'4'} {'5'}
y =
1×6 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'}
y =
1×7 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'}
y =
1×8 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'}
y =
1×9 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'}
y =
1×10 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'10'}
y =
1×11 cell array
{'1'} {'2'} {'3'} {'4'} {'5'} {'6'} {'7'} {'8'} {'9'} {'10'} {'11'}
|
321 Solvers
Create a two dimensional zero matrix
354 Solvers
345 Solvers
Pernicious Anniversary Problem
735 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!