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))
|
54301 Solvers
Make the vector [1 2 3 4 5 6 7 8 9 10]
35560 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Sum the 'edge' values of a matrix
232 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!