728x90
반응형
https://www.hackerrank.com/challenges/what-type-of-triangle/problem?isFullScreen=true
문제
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 sides of equal length.
- Isosceles: It's a triangle with sides of equal length.
- Scalene: It's a triangle with 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.
Code
SELECT CASE
WHEN A = B AND B = C THEN 'Equilateral'
WHEN A + B <= C OR A + C <= B OR B + C <= A THEN 'Not A Triangle'
WHEN A = B OR A = C OR B = C THEN 'Isosceles'
ELSE 'Scalene' END
FROM TRIANGLES;
728x90
반응형
'SQL > MySQL' 카테고리의 다른 글
[MySQL/HackerRank] Revising Aggregations - The Count Function (0) | 2023.08.21 |
---|---|
[MySQL/HackerRank] The PADS (0) | 2023.08.21 |
[MySQL/HackerRank] Employee Salaries (0) | 2023.08.18 |
[MySQL/HackerRank] Employee Names (0) | 2023.08.18 |
[MySQL/HackerRank] Higher Than 75 Marks (0) | 2023.08.18 |