Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
2 | Pass |
%%
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
3 | Pass |
%%
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
4 | Pass |
%%
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
5 | Pass |
%%
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
6 | Pass |
%%
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
ans =
[]
|
Sum all integers from 1 to 2^n
8414 Solvers
Matrix indexing with two vectors of indices
485 Solvers
Determine Whether an array is empty
646 Solvers
Find nearest prime number less than input number
268 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!