일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- branch
- github
- L2정규화
- early stopping
- 편향-분산 교환
- 선형 모형
- window function
- 온라인협업
- Git
- L1정규화
- mysql
- 교차 엔트로피
- CSS
- 버전충돌
- sql
- AWS
- merge
- 코딩공부
- PYTHON
- conflict
- coding
- leetcode
- hackerrank
- programmers
- 클라우드컴퓨팅
- HTML
- 깃헙협업
- RLIKE
- elastic net
- full request
- Today
- Total
목록분류 전체보기 (112)
Im between cherry
Weather Observation Station 7 Problem Weather Observation Station 7 | HackerRank Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. www.hackerrank.com Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: where LAT_N is the northern latitude and LONG_W..
LIKE '_' 한 글자와 매칭 '홍____'은 '홍'자로 시작하고 4개의 character와 대응 ('홍길동', '홍lina') '%' 여러 문자와 매칭 '홍%'은 첫글자가 '홍'으로 시작 RLIKE '.' 단일 문자와 매칭 '^....$'은 영문4글자, 한글 2글자와 매칭 또는 '^.{4}$'처럼 표기해도 같은 의미임 '[...]' 괄호 내의 어느 문자와도 매칭 [ab]는 'a'나 'b'와 매칭 [a-c]는 'a'나 'b'나 'c'와 매칭 '*' 여러 문자와 매칭(0개 이상) 'a*'은 a가 몇번 반복되는 것과 매칭 '[0-9]*'는 임의의 수와 매칭 '대소문자' 구분한다. '[aA]'는 a나 A와 매칭 '[a-zA-Z]'은 모든 알파벳과 매칭 '^' 패턴 매칭에서 시작하는 문자 '^홍'은 '홍'자로..
Weather Observation Station 6 Problem Weather Observation Station 6 | HackerRank Query a list of CITY names beginning with vowels (a, e, i, o, u). www.hackerrank.com Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates. Input Format The STATION table is described as follows: Solution -- RLIKE 사용 SELECT DISTINCT city FROM s..
Weather Observation Station 5 Problem 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 Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or la..
Weather Observation Station 4 Problem Weather Observation Station 4 | HackerRank Find the number of duplicate CITY names in STATION. www.hackerrank.com Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table. The STATION table is described as follows: Solution SELECT COUNT(city) - COUNT(DISTINCT(city)) FROM station
Weather Observation Station 3 Problem Weather Observation Station 3 | HackerRank Query a list of unique CITY names with even ID numbers. www.hackerrank.com Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer. The STATION table is described as follows: Solution SELECT distinct City FROM Station WHER..
Weather Observation Station 1 Problem Weather Observation Station 1 | HackerRank Write a query to print the CITY and STATE for each attribute in the STATION table. www.hackerrank.com Query a list of CITY and STATE from the STATION table. The STATION table is described as follows: Solution SELECT City, State FROM Station
Japanese Cities' Names Problem Japanese Cities' Names | HackerRank In this challenge, you will query a list of all the Japanese cities' names. www.hackerrank.com Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN. The CITY table is described as follows: Solution SELECT NAME FROM CITY WHERE countrycode = 'JPN'