Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 25;
y_correct = [1 4 9 16 25];
assert(isequal(prntseq(x),y_correct))
y =
[]
y =
1
y =
1 4
y =
1 4 9
y =
1 4 9 16
y =
1 4 9 16 25
|
2 | Pass |
%%
x = 100;
y_correct = [1 4 9 16 25 36 49 64 81 100];
assert(isequal(prntseq(x),y_correct))
y =
[]
y =
1
y =
1 4
y =
1 4 9
y =
1 4 9 16
y =
1 4 9 16 25
y =
1 4 9 16 25 36
y =
1 4 9 16 25 36 49
y =
1 4 9 16 25 36 49 64
y =
1 4 9 16 25 36 49 64 81
y =
1 4 9 16 25 36 49 64 81 100
|
3 | Pass |
%%
x = 9;
y_correct = [1 4 9];
assert(isequal(prntseq(x),y_correct))
y =
[]
y =
1
y =
1 4
y =
1 4 9
|
4 | Pass |
%%
x = 36;
y_correct = [1 4 9 16 25 36];
assert(isequal(prntseq(x),y_correct))
y =
[]
y =
1
y =
1 4
y =
1 4 9
y =
1 4 9 16
y =
1 4 9 16 25
y =
1 4 9 16 25 36
|
1882 Solvers
Vectorize the digits of an Integer
269 Solvers
320 Solvers
145 Solvers
273 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!