일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- backward
- stak
- Sigmoid
- PPMI
- Word2vec
- select
- skip-gram
- 자연어처리
- 프로그래머스
- 파이썬
- 신경망
- algorithm
- Programmers
- 딥러닝
- boj
- SQL
- hash
- dl
- FullyConnectedLayer
- Numpy
- affine
- sort
- Heap
- Stack
- Python
- DeepLearning
- MySQL
- CBOW
- kakao
- que
- Today
- Total
목록분류 전체보기 (105)
혜온의 이것저것
![](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..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/CbJE1/btrJvGR69cv/Jka2q1EGIgXgfpK4KofK5k/img.jpg)
https://www.hackerrank.com/challenges/revising-aggregations-sum/problem?isFullScreen=true&h_r=next-challenge&h_v=zen Revising Aggregations - The Sum Function | HackerRank Query the total population of all cities for in the District of California. www.hackerrank.com 문제 Query the total population of all cities in CITY where District is California. Input Format The CITY table is described as follow..