This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
mx =
25
mn =
9
m3 =
16
y =
1
|
2 | Pass |
%%
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
mx =
25
mn =
9
m3 =
16
y =
1
|
3 | Pass |
%%
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
mx =
169
mn =
25
m3 =
144
y =
1
|
4 | Pass |
%%
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
mx =
25
mn =
25
m3 =
25
y =
0
|
5 | Pass |
%%
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
mx =
12769
mn =
225
m3 =
12544
y =
1
|
6 | Pass |
%%
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
mx =
12769
mn =
225
m3 =
12100
y =
0
|
1963 Solvers
721 Solvers
Who knows the last digit of pi?
488 Solvers
477 Solvers
Rounding off numbers to n decimals
280 Solvers