알고리즘/HackerRank
[HackerRank] Average Population 오라클 풀이
mndev
2024. 1. 30. 15:17
문제링크
Average Population | HackerRank
Query the average population of all cities, rounded down to the nearest integer.
www.hackerrank.com
풀이
문제 조건에 따라 인구의 평균을 구하고, round 함수를 사용해 내림한다.
코드
select round(avg(population),-1)
from city