일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자연어처리
- Numpy
- algorithm
- Heap
- DeepLearning
- select
- dl
- sort
- backward
- SQL
- Sigmoid
- hash
- affine
- boj
- 딥러닝
- Programmers
- Word2vec
- PPMI
- MySQL
- FullyConnectedLayer
- 신경망
- kakao
- stak
- Stack
- 파이썬
- Python
- skip-gram
- 프로그래머스
- CBOW
- que
- Today
- Total
목록Data Analysis/SQL (66)
혜온의 이것저것
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bm4gYX/btrJEKUn4iX/LcffJKaKfhaHUokuRttRJK/img.png)
https://www.hackerrank.com/challenges/the-blunder/problem?isFullScreen=true&h_r=next-challenge&h_v=zen The Blunder | HackerRank Query the amount of error in Sam's result, rounded up to the next integer. www.hackerrank.com 문제 Samantha was tasked with calculating the average monthly salaries for all employees in the EMPLOYEES table, but did not realize her keyboard's 0 key was broken until after c..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/9JMzJ/btrJLTCvTPF/Sp0EPod3CzkIrFTvBDYRvK/img.jpg)
https://www.hackerrank.com/challenges/population-density-difference/problem?isFullScreen=true Population Density Difference | HackerRank Query the difference between the maximum and minimum city populations in CITY. www.hackerrank.com 문제 Query the difference between the maximum and minimum populations in CITY. Input Format The CITY table is described as follows: 풀이 select max(population) - min(p..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b4zEnO/btrJyqIbHRG/UgXFosp89NM1PTYfbAGOOk/img.jpg)
https://www.hackerrank.com/challenges/japan-population/problem?isFullScreen=true&h_r=next-challenge&h_v=zen Japan Population | HackerRank Query to the sum of the populations of all Japanese cities in CITY. www.hackerrank.com 문제 Query the sum of the populations for all Japanese cities in CITY. The COUNTRYCODE for Japan is JPN. Input Format The CITY table is described as follows: 풀이 select sum(pop..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/lR8SG/btrJvRs0YYU/F4H0U0kK0KfvVZWrs3zJm0/img.jpg)
https://www.hackerrank.com/challenges/average-population/problem?isFullScreen=true Average Population | HackerRank Query the average population of all cities, rounded down to the nearest integer. www.hackerrank.com 문제 Query the average population for all cities in CITY, rounded down to the nearest integer. Input Format The CITY table is described as follows: 풀이 select floor(avg(population)) from..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/zeR50/btrJAC8CcKc/p71EwwPf0447oVO5WJw2jk/img.jpg)
https://www.hackerrank.com/challenges/revising-aggregations-the-average-function/problem?isFullScreen=true&h_r=next-challenge&h_v=zen&h_r=next-challenge&h_v=zen Revising Aggregations - Averages | HackerRank Query the average population of all cities in the District of California. www.hackerrank.com 문제 Query the average population of all cities in CITY where District is California. Input Format T..