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 =
[]
|
Return a list sorted by number of occurrences
1504 Solvers
Project Euler: Problem 3, Largest prime factor
380 Solvers
502 Solvers
How long is the longest prime diagonal?
338 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!