2021. 1. 11. 22:15ㆍToday I Learned.../MySQL
Type of Triangle
Write a query identifying the type of each record in the TRIANGLES table using its three side lengths. Output one of the following statements for each record in the table:
- Equilateral: It's a triangle with 3 sides of equal length.
- Isosceles: It's a triangle with 2 sides of equal length.
- Scalene: It's a triangle with 3 sides of differing lengths.
- Not A Triangle: The given values of A, B, and C don't form a triangle.
Input Format
The TRIANGLES table is described as follows:
Each row in the table denotes the lengths of each of a triangle's three sides.
Sample Input
Sample Output
Isosceles
Equilateral
Scalene
Not A Triangle
Explanation
Values in the tuple (20, 20, 23) form an Isosceles triangle, because A ≠ B.
Values in the tuple (20, 20, 20) form an Equilateral triangle, because A = B = C.
Values in the tuple (20, 21, 22) form a Scalene triangle, because A ≠ B ≠ C.
Values in the tuple (13, 14, 30) cannot form a triangle because the combined value of sides A and B is not larger than that of side C.
select case when a+b>c and a+c>b and b+c>a then
case when a=b and b=c then 'Equilateral'
when a=b or a=c or b=c then 'Isosceles'
else 'Scalene' end
else 'Not A Triangle' end
from triangles
Reference: HackerRank Practice > SQL > Advanced Select > Type of Triangle
'Today I Learned... > MySQL' 카테고리의 다른 글
[LeetCode MySQL] 183. Customers Who Never Order (0) | 2021.01.11 |
---|---|
[LeetCode MySQL] 1179. Reformat Department Table (0) | 2021.01.11 |
[HackerRank MySQL] Draw The Triangle 1 & 2 - information_schema.tables (0) | 2021.01.05 |
[HackerRank MySQL] INNER JOIN 문제풀기 (Basic) (0) | 2021.01.05 |
[HackerRank MySQL] Weather Observation Station 2, 13-17 - ROUND & TRUNCATE (Basic) (0) | 2021.01.05 |