Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
sides = [3 4 5];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
1
|
2 | Pass |
%%
sides = [3 5 4];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
1
|
3 | Pass |
%%
sides = [5 12 13];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
1
|
4 | Pass |
%%
sides = [5 5 5];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
y =
0
|
5 | Pass |
%%
sides = [113 112 15];
tf_correct = true;
assert(isequal(right(sides),tf_correct))
y =
1
|
6 | Pass |
%%
sides = [113 110 15];
tf_correct = false;
assert(isequal(right(sides),tf_correct))
y =
0
|
Determine whether a vector is monotonically increasing
11924 Solvers
Return a list sorted by number of occurrences
1504 Solvers
Find the peak 3n+1 sequence value
1108 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
616 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!