This works in Matlab but not here? It fails on Test 3, but when I use the same value of x and the same function in Matlab it works...
Your output y is a row vector (or scalar), but in 3'rd test it should be a column vector. Predefine y first with the same size as x.
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))
|
2 | Pass |
x = 1;
y_correct = true;
assert(isequal(isTriangleNumber(x),y_correct))
|
3 | Fail |
x = [4912734125;4912734126];
y_correct = [false;true];
assert(isequal(isTriangleNumber(x),y_correct))
|
1091 Solvers
829 Solvers
1263 Solvers
204 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!