Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- Lv1
- COS Pro
- 스택
- 알고리즘
- 프로그래머스 자바
- 프로그래머스 문자열 정렬
- Programmers
- index of
- 문자열
- java
- 버퍼
- 자바
- 프로그래머스 풀이
- 스프링부트 도커로 배포
- 큐
- 스프링부트 도커 배포
- Queue
- 백준 N과 M 자바
- 스프링부트 도커
- 오름차순 정렬
- SWEA
- Stack
- 삼각형의 완성조건
- lv2
- StringTokenizer
- 이진수 변환
- 클라이언트
- 백준
- lv0
- 프로그래머스
Archives
- Today
- Total
mun dev
[HackerRank] Weather Observation Station 17 오라클 풀이 본문
문제링크
Weather Observation Station 17 | HackerRank
Query the Western Longitude for the smallest value of the Northern Latitudes greater than 38.7780 in STATION and round to 4 decimal places.
www.hackerrank.com
코드
select round(long_w,4)
from station
where lat_n = (select min(lat_n)
from station
where lat_n > 38.7780);
'알고리즘 > HackerRank' 카테고리의 다른 글
[HackerRank] Population Census 오라클 풀이 (0) | 2024.02.02 |
---|---|
[HackerRank] Revising the Select Query II 오라클 풀이 (0) | 2024.02.02 |
[HackerRank] SQL Project Planning 오라클 풀이 (0) | 2024.02.02 |
[HackerRank] Contest Leaderboard 오라클 풀이 (1) | 2024.02.02 |
[HackerRank] Top Competitors 오라클 풀이 (1) | 2024.01.31 |