Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
t = 1;
assert(isequal(triangle(n),t))
x =
0
x =
1
t =
1
|
2 | Pass |
n = 3;
t = 6;
assert(isequal(triangle(n),t))
x =
0
x =
1
x =
3
x =
6
t =
6
|
3 | Pass |
n = 5;
t = 15;
assert(isequal(triangle(n),t))
x =
0
x =
1
x =
3
x =
6
x =
10
x =
15
t =
15
|
4 | Pass |
n = 30;
t = 465;
assert(isequal(triangle(n),t))
x =
0
x =
1
x =
3
x =
6
x =
10
x =
15
x =
21
x =
28
x =
36
x =
45
x =
55
x =
66
x =
78
x =
91
x =
105
x =
120
x =
136
x =
153
x =
171
x =
190
x =
210
x =
231
x =
253
x =
276
x =
300
x =
325
x =
351
x =
378
x =
406
x =
435
x =
465
t =
465
|
348 Solvers
Set the array elements whose value is 13 to 0
941 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
315 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!