Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 25;
y_correct = [1 4 9 16 25];
assert(isequal(prntseq(x),y_correct))
y =
[]
c =
1
y =
1
c =
2
y =
1 4
c =
3
y =
1 4 9
c =
4
y =
1 4 9 16
c =
5
y =
1 4 9 16 25
c =
6
|
2 | Pass |
x = 100;
y_correct = [1 4 9 16 25 36 49 64 81 100];
assert(isequal(prntseq(x),y_correct))
y =
[]
c =
1
y =
1
c =
2
y =
1 4
c =
3
y =
1 4 9
c =
4
y =
1 4 9 16
c =
5
y =
1 4 9 16 25
c =
6
y =
1 4 9 16 25 36
c =
7
y =
1 4 9 16 25 36 49
c =
8
y =
1 4 9 16 25 36 49 64
c =
9
y =
1 4 9 16 25 36 49 64 81
c =
10
y =
1 4 9 16 25 36 49 64 81 100
c =
11
|
3 | Pass |
x = 9;
y_correct = [1 4 9];
assert(isequal(prntseq(x),y_correct))
y =
[]
c =
1
y =
1
c =
2
y =
1 4
c =
3
y =
1 4 9
c =
4
|
4 | Pass |
x = 36;
y_correct = [1 4 9 16 25 36];
assert(isequal(prntseq(x),y_correct))
y =
[]
c =
1
y =
1
c =
2
y =
1 4
c =
3
y =
1 4 9
c =
4
y =
1 4 9 16
c =
5
y =
1 4 9 16 25
c =
6
y =
1 4 9 16 25 36
c =
7
|
1102 Solvers
582 Solvers
Who knows the last digit of pi?
488 Solvers
205 Solvers
Find the area of the four walls
135 Solvers