Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
logical
1
|
2 | Pass |
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
logical
1
|
3 | Pass |
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
logical
1
|
4 | Pass |
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
y =
logical
0
|
5 | Pass |
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
logical
1
|
6 | Pass |
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
y =
logical
0
|
Find relatively common elements in matrix rows
865 Solvers
Check to see if a Sudoku Puzzle is Solved
279 Solvers
232 Solvers
How long is the longest prime diagonal?
338 Solvers
641 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!