728x90
❓ Question
https://www.hackerrank.com/challenges/weather-observation-station-18
❗ Answer
SELECT ROUND((MAX(lat_n)-MIN(lat_n)+MAX(long_w)-MIN(long_w)),4)
FROM station;
📌 Discussion
- 맨하탄 거리는 x축 거리와 y축 거리의 합이다.
- 따라서 lat_n과 long_w 각각의 최대값과 최소값의 차이를 더해준다.
'SQL 문제풀이' 카테고리의 다른 글
[해커랭크 SQL] Aggregation - Weather Observation Station 19 (0) | 2023.08.25 |
---|---|
[해커랭크 SQL] Aggregation - Weather Observation Station 17 (0) | 2023.08.25 |
[해커랭크 SQL] Aggregation - Weather Observation Station 16 (0) | 2023.08.25 |
[해커랭크 SQL] Aggregation - Weather Observation Station 15 (0) | 2023.08.25 |
[해커랭크 SQL] Aggregation - Weather Observation Station 14 (0) | 2023.08.25 |