Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [3 4 5];
y_correct = true;
assert(isequal(right_triangle(x),y_correct))
|
2 | Pass |
%%
x = [1 2 3 4 5 6 7];
y_correct = true;
assert(isequal(right_triangle(x),y_correct))
|
3 | Pass |
%%
x = [3 2 9 129 7 8 13];
y_correct = false;
assert(isequal(right_triangle(x),y_correct))
|
4 | Pass |
%%
x = [1:3:300];
y_correct = false;
assert(isequal(right_triangle(x),y_correct))
|
5 | Pass |
%%
x = 1;
y_correct = false;
assert(isequal(right_triangle(x),y_correct))
|
6 | Pass |
%%
x = [200 5 28 4 9 1 1 1 3];
y_correct = true;
assert(isequal(right_triangle(x),y_correct))
|
1800 Solvers
695 Solvers
248 Solvers
Reverse the elements of an array
687 Solvers
construct matrix with identical rows
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!