Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
|
2 | Pass |
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
|
3 | Pass |
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
|
4 | Pass |
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
|
5 | Pass |
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
|
6 | Pass |
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
|
522 Solvers
4110 Solvers
Similar Triangles - find the height of the tree
156 Solvers
Back to basics 19 - character types
189 Solvers
Change the sign of even index entries of the reversed vector
214 Solvers