일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- elastic net
- early stopping
- PYTHON
- 선형 모형
- mysql
- hackerrank
- coding
- sql
- merge
- 코딩공부
- 온라인협업
- 깃헙협업
- 편향-분산 교환
- RLIKE
- conflict
- 교차 엔트로피
- L1정규화
- 클라우드컴퓨팅
- github
- HTML
- AWS
- leetcode
- CSS
- full request
- branch
- 버전충돌
- L2정규화
- programmers
- Git
- window function
- Today
- Total
목록leetcode (4)
Im between cherry

leetcode.com/problems/department-top-three-salaries/ Department Top Three Salaries - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com /* RANK(), DENSE_RANK() */ SELECT t.Employee, t.Department, t.Salary FROM( SELECT department.name AS department , employee.name AS employee , employe..

180. Consecutive Numbers leetcode.com/problems/consecutive-numbers/ Consecutive Numbers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com SELECT DISTINCT l.Num AS ConsecutiveNums FROM logs AS l INNER JOIN logs AS l_next ON l.id+1 = l_next.id INNER JOIN logs AS l_next2 ON l.id+2 = l..

177. Nth Highest Salary https://leetcode.com/problems/nth-highest-salary/ Nth Highest Salary - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com --CASE로 풀기 CREATE FUNCTION getNthHighestSalary(N INT) RETURNS INT BEGIN RETURN ( # Write your MySQL query statement below. SELECT CASE WHEN..
181. Employees Earning More Than Their Managers https://leetcode.com/problems/employees-earning-more-than-their-managers/ Employees Earning More Than Their Managers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com The Employee table holds all employees including their managers. Ev..