47. Triangle Judgement
https://leetcode.com/problems/triangle-judgement/
Report for every three line segments whether they can form a triangle. Return the result table in any order.
select x,y,z, if(x+y<=z or x+z<=y or y+z<=x, 'No', 'Yes') triangle FROM TRIANGLE
삼각형 정의에 대한 이해가 필요! 양변의 길이가 가장 긴 변의 길이와 같거나 크면 삼각형은 성립이 안된다!