hardcore brute force
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = 1;
b = 2;
c = 3;
d = 4;
flag_correct = false;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
2 | Pass |
%%
a = 2;
b = 3;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
3 | Pass |
%%
a = 3;
b = 4;
c = 5;
d = 6;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
4 | Pass |
%%
a = 3;
b = 4;
c = 4.5;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
5 | Pass |
%%
a = 3;
b = 3.5;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
|
Find the two most distant points
1628 Solvers
894 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
1172 Solvers
Solve a System of Linear Equations
3451 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!