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:100;
y_correct = false(1,100);
y_correct([1 3 6 10 15 21 28 36 45 55 66 78 91]) = true;
assert(isequal(isTriangleNumber(x),y_correct))
y =
1×100 logical array
Columns 1 through 44
1 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
Columns 45 through 88
1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
Columns 89 through 100
0 0 1 0 0 0 0 0 0 0 0 0
|
2 | Pass |
x = 1;
y_correct = true;
assert(isequal(isTriangleNumber(x),y_correct))
y =
logical
1
|
3 | Pass |
x = [4912734125;4912734126];
y_correct = [false;true];
assert(isequal(isTriangleNumber(x),y_correct))
y =
2×1 logical array
0
1
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!