일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Great Minds
- KMOOC
- Baekjoon
- 누가 진정한 리더인가
- ADP
- 자료구조
- 코테
- 정치학
- 당신이 몰랐던 진화론
- 미분적분학
- MySQL
- Hacker Rank
- 후기
- 데이터분석전문가가이드
- EBS
- 빅데이터
- CNN10
- 조지프 나이
- python
- 데이터분석전문가
- K-MOOC
- 맛집
- Progate
- 백준
- 공부정리
- 알고리즘
- ADsP
- Joseph Samuel Nye Jr.
- 위대한 수업
- Udemy
- Today
- Total
목록Hacker Rank (14)
ㅇ

Linux Shell > Bash > Looping and Skipping Looping and Skipping | HackerRank Let's play with for loops, a little more. Let's skip numbers! www.hackerrank.com for i in {1..99..2} do echo $i done Linux Shell > Bash > A Personalized Echo A Personalized Echo | HackerRank A very gentle on-boarding, to accepting input in Bash. www.hackerrank.com read name echo "Welcome $name" Linux Shell > Bash > Loopi..

SQL > Basic Join > Contest Leaderboard Contest Leaderboard | HackerRank Generate the contest leaderboard. www.hackerrank.com The total score of a hacker is the sum of their maximum scores for all of the challenges. Write a query to print the hacker_id, name, and total score of the hackers ordered by the descending score. If more than one hacker achieved the same total score, then sort the result..

SQL > Advanced Join > Symmetric Pairs Symmetric Pairs | HackerRank Write a query to output all symmetric pairs in ascending order by the value of X. www.hackerrank.com Two pairs (X1, Y1) and (X2, Y2) are said to be symmetric pairs if X1 = Y2 and X2 = Y1. Write a query to output all such symmetric pairs in ascending order by the value of X. List the rows such that X1 ≤ Y1. 빨간 글씨는 내가 문제를 풀 때 중요하다고..

SQL > Advanced Select > New Companies New Companies | HackerRank Find total number of employees. www.hackerrank.com Given the table schemas below, write a query to print the company_code, founder name, total number of lead managers, total number of senior managers, total number of managers, and total number of employees. Order your output by ascending company_code. Note: The tables may contain d..

SQL > Advanced Select > Binary Tree Nodes Write a query to find the node type of Binary Tree ordered by the value of the node. Output one of the following for each node: Root: If node is root node. Leaf: If node is leaf node. Inner: If node is neither root nor leaf node. 빨간 글씨는 내가 문제를 풀 때 중요하다고 생각한 부분이다. SELECT N, CASE WHEN P IS NULL THEN 'Root' ELSE CASE WHEN N IN (SELECT P FROM BST) THEN 'Inne..

SQL > Aggregation > Weather Observation Station 19 Weather Observation Station 19 | HackerRank Query the Euclidean Distance between two points and round to 4 decimal digits. www.hackerrank.com Consider P1(a, c) and P2(b, d) to be two points on a 2D plane where (a,b) are the respective minimum and maximum values of Northern Latitude (LAT_N) and (c, d) are the respective minimum and maximum values..