Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
1
|
2 | Pass |
%%
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
1
|
3 | Pass |
%%
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
1
|
4 | Pass |
%%
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
ans =
0
|
5 | Pass |
%%
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
ans =
1
|
6 | Pass |
%%
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
ans =
0
|
248 Solvers
Sum all integers from 1 to 2^n
8420 Solvers
484 Solvers
07 - Common functions and indexing 5
314 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!