Find out if a right-angled triangle can be made given some facts about the shape.
true if the shape could be a right-angle triangle and false if not.isRightAngle([30, 60], "angle") ➞ true
// A third angle could be 90
isRightAngle([20, 20, 20, 20], "angle") ➞ false
// More than 3 sides
isRightAngle([4, 5, 3], "side") ➞ true
// 3**2 + 4**2 = 5**2
isRightAngle([4, 5], "side") ➞ true
// Third side may be 3