Should work for any case and doesn't contain str2num or regexp :)
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))
ans =
1 4 9 16
ans =
0
|
2 | Pass |
%%
a = 2;
b = 3;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
ans =
4 9 16 25
ans =
1
|
3 | Pass |
%%
a = 3;
b = 4;
c = 5;
d = 6;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
ans =
9 16 25 36
ans =
1
|
4 | Pass |
%%
a = 3;
b = 4;
c = 4.5;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
ans =
9.0000 16.0000 20.2500 25.0000
ans =
1
|
5 | Pass |
%%
a = 3;
b = 3.5;
c = 4;
d = 5;
flag_correct = true;
assert(isequal(isTherePythagoreanTriple(a, b, c, d),flag_correct))
ans =
9.0000 12.2500 16.0000 25.0000
ans =
1
|
1836 Solvers
1160 Solvers
Who knows the last digit of pi?
557 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
512 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!