Given a vector of lengths [a b c], determines whether a triangle with those sides lengths is a right triangle: http://en.wikipedia.org/wiki/Right_triangle.
Examples:
[3 4 5] ---> true
[5 12 13] ---> true
[5 5 5] ---> false
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1445
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15817 Solvers
-
Calculate the Levenshtein distance between two strings
1513 Solvers
-
Check to see if a Sudoku Puzzle is Solved
341 Solvers
-
540 Solvers
-
Reverse the elements of an array
1144 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
how is [5 5 5] false?
@Nikolaos
[5 5 5] can make a triangle, but not a *right* triangle (with one 90-degree angle). See the Wikipedia page definition.
Great!