HackerRank 4

[HackerRank] Weather Observation Station 18

https://www.hackerrank.com/challenges/weather-observation-station-18/problem?isFullScreen=true Weather Observation Station 18 | HackerRank Query the Manhattan Distance between two points, round or truncate to 4 decimal digits. www.hackerrank.com [코드] select Round(abs(max(LAT_N)-min(LAT_N))+abs(max(LONG_W)-min(LONG_W)),4) from STATION; [고찰] 이번 문제는 절댓값을 구하기 위해서 abs() 함수를 써야하는 것만 알면 쉽게 해결 할 수 있었다.

SQL 문제 2023.10.16