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
- MySQL
- 성능테스트툴
- 코드스테이츠 백엔드
- 프로그래머스
- 투포인터알고리즘
- 버블정렬
- 재귀와반복문
- 코딩테스트
- 백준
- Spring MVC 구성요소
- 자바
- 알고리즘
- String.valueOf()
- 재귀함수
- java
- Spring Web MVC
- vm인스턴스생성
- GCP
- 백준 11659
- 클라우드에서 도커 실행하기
- 구간합구하기
- 11659
- 스택
- OOP
- Array.asList
- 인텔리제이
- 코드스테이츠
- List.of
- Spring MVC 동작원리
- 싱글톤패턴
Archives
- Today
- Total
목록Weather Observation Station 11 (1)
순간을 기록으로
[MySQL] Weather Observation Station 11 | 정규표현식
문제 - 도시명이 모음으로 시작하지 않거나 모음으로 끝나지 않는 도시 리스트를 조회하세요. - 결과에 중복이 있으면 안됩니다. 풀이 select distinct city from station where city regexp '^[^aeiou]' or city regexp '[^aeiou]$'; 출처: https://www.hackerrank.com/challenges/weather-observation-station-11/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen Weather Observation Station 11 | HackerRank Query a list of CITY names not star..
Problem Solving
2022. 3. 29. 12:06