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 |
31 |
Tags
- java
- 프로그래머스 자바
- 프로그래머스
- Programmers
- StringTokenizer
- 프로그래머스 문자열 정렬
- 문자열
- 이진수 변환
- 백준 N과 M 자바
- 스프링부트 도커
- 스프링부트 도커로 배포
- 백준
- lv2
- Lv1
- 프로그래머스 풀이
- SWEA
- COS Pro
- lv0
- 알고리즘
- index of
- Queue
- 삼각형의 완성조건
- 스택
- 클라이언트
- 스프링부트 도커 배포
- 큐
- 자바
- 오름차순 정렬
- Stack
- 버퍼
Archives
- Today
- Total
mun dev
[HackerRank] Weather Observation Station 12 오라클 풀이 본문
문제링크
Weather Observation Station 12 | HackerRank
Query an alphabetically ordered list of CITY names not starting and ending with vowels.
www.hackerrank.com
코드
select distinct city
from station
where (upper(city) not like 'A%'
and upper(city) not like 'E%'
and upper(city) not like 'I%'
and upper(city) not like 'O%'
and upper(city) not like 'U%')
and
(upper(city) not like '%A'
and upper(city) not like '%E'
and upper(city) not like '%I'
and upper(city) not like '%O'
and upper(city) not like '%U');
'알고리즘 > HackerRank' 카테고리의 다른 글
[HackerRank] Employee Salaries 오라클 풀이 (0) | 2024.01.29 |
---|---|
[HackerRank] Higher Than 75 Marks 오라클 풀이 (0) | 2024.01.29 |
[HackerRank] Weather Observation Station 11 오라클 풀이 (0) | 2024.01.29 |
[HackerRank] Weather Observation Station 9 오라클 풀이 (0) | 2024.01.29 |
[HackerRank] Weather Observation Station 8 오라클 풀이 (0) | 2024.01.29 |