Problem 164. Right and wrong

Created by the cyclist

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

Tags

Problem Group

183 solvers submitted 442 solutions (2.42 solutions/solver).

Problem Comments

Solution Comments