일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Airflow
- 프로그래머스
- data_engineer
- Python
- 백준온라인저지
- Data Engineering
- Pseudo Lab
- 빅데이터를 지탱하는 기술
- dsf
- hackerrank
- delete join
- docker image
- airflow architecture
- 데이터 엔지니어
- Dynamic Programming
- MySQL
- terraform
- 그리디
- leetcode
- telegram
- SQL
- BOT
- docker
- 2023년 목표
- datacamp
- 알고리즘
- 백준 온라인 저지
- docker container
- airflow webserver
- Spark
- Today
- Total
목록분류 전체보기 (104)
Lim Seunghyun Space
문제 : https://www.hackerrank.com/challenges/weather-observation-station-12/problem?isFullScreen=true Weather Observation Station 12 | HackerRank Query an alphabetically ordered list of CITY names not starting and ending with vowels. www.hackerrank.com 문제 해설 STATION 테이블에서 모음(a,e,i,o,u)로 시작하지 않고 모음으로 끝나지 않는 CITY 이름을 조회 중복된 CITY 이름은 제외 나의 해설 (MySQL) SELECT DISTINCT CITY FROM STATION WHERE CITY REGEX..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-11 Weather Observation Station 11 | HackerRank Query a list of CITY names not starting or ending with vowels. www.hackerrank.com 문제 해설 STATION 테이블에서 모음(a,e,i,o,u)으로 끝나지 않거나 모음으로 시작하지 않는 CITY 이름 조회 !중요 : (모음 끝나지 않음) OR (모음 시작하지 않음) 조건식으로 하면 모음으로 시작하고 모음으로 끝나는 CITY 이름도 조회되기 때문에 모음 시작하고 모음으로 끝나는 CITY 이름은 제외하도록 해줘야한다. 중복된 CITY 이름..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-10/ Weather Observation Station 10 | HackerRank Query a list of CITY names not ending in vowels. www.hackerrank.com 문제 해설 STATION 테이블에서 모음(a,e,i,o,u)로 끝나지 않는 CITY의 이름을 조회 중복된 CITY는 제외 나의 풀이 (MySQL) SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP("^.+[^aeiouAEIOU]$"); https://limspace.tistory.com/entry/HackerRank-Weather-O..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-9 Weather Observation Station 9 | HackerRank Query an alphabetically ordered list of CITY names not starting with vowels. www.hackerrank.com 문제 해설 STATION 테이블에서 모음(a,e,i,o,u)로 시작하지 않은 CITY 이름을 조회 중복된 CITY는 제외 나의 풀이 (MySQL) SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP("^[^aeiouAEIOU].+$"); "^[^aeiouAEIOU].+$" : 모음가 아닌 문..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-8/problem?isFullScreen=true Weather Observation Station 8 | HackerRank Query CITY names that start AND end with vowels. www.hackerrank.com 문제 해설 STATION 테이블에서 모음(a,e,i,o,u)로 시작하고 모음으로 끝나는 CITY의 이름 조회 중복된 CITY 이름은 제외 나의 풀이 (MySQL) SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP('^[aeiou].*[aeiou]$'); REGEXP : 문자열이 정규표현식과 일..
문제 : https://www.hackerrank.com/challenges/validate-a-roman-number/problem?isFullScreen=true Validating Roman Numerals | HackerRank Use regex to validate Roman numerals. www.hackerrank.com 문제 해설 정규표현식을 이용하여 주어진 로마숫자가 유효한지 판단하는 로직 문제 풀이 (Python3) regex_pattern = r"^M{0,3}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$"# Do not delete 'r'. import re print(str(bool(re.match(regex_pattern, input()..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-7/problem?isFullScreen=true Weather Observation Station 7 | HackerRank Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. www.hackerrank.com 문제 해설 STATION 테이블의 CITY 이름이 a,e,i,o,u로 끝나는 데이터만 조회 중복된 CITY는 제외 풀이 (MySQL) SELECT DISTINCT(CITY) FROM STATION WHERE CITY LIKE "%a" OR CITY LIKE "%e" OR CITY LI..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-6/problem?isFullScreen=true Weather Observation Station 6 | HackerRank Query a list of CITY names beginning with vowels (a, e, i, o, u). www.hackerrank.com 문제 해설 STATION 테이블에서 CITY 값이 a,e,i,o,u 로 시작하는 데이터를 조회 조회하는 CITY는 중복제거 풀이 (MySQL) SELECT DISTINCT(CITY) FROM STATION WHERE CITY LIKE "a%" or CITY LIKE "e%" or CITY LIKE "i%"..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-5/problem?isFullScreen=true Weather Observation Station 5 | HackerRank Write a query to print the shortest and longest length city name along with the length of the city names. www.hackerrank.com 문제 해설 CITY 이름이 가장 긴 것과 가장 작은 것을 조회 만일 이름의 길이가 같다면 알파벳 순으로 정렬 후 가장 먼저 오는 것을 조회 풀이 (MySQL) SELECT CITY, LENGTH(CITY) FROM STATION ORD..
문제 : https://www.hackerrank.com/challenges/weather-observation-station-4/problem?isFullScreen=true Weather Observation Station 4 | HackerRank Find the number of duplicate CITY names in STATION. www.hackerrank.com 문제 해설 전체 CITY의 수에서 중복을 제거한 CITY의 수의 차이를 조회 풀이 (MySQL) SELECT COUNT(CITY) - COUNT(DISTINCT(CITY)) FROM STATION