Coding Test
190 posts
members
Leetcode - 626. Exchange Seats
문제
Loading...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
정답…
members
Leetcode - 511. Game Play Analysis I
문제
https://leetcode.com/problems/game-play-analysis-i/
정답
SELECT player_id, MIN(event_date) as first_login
FROM Activity
GROUP BY player_id…
members
Leecode - 1141.User Activity for the Past 30 Days I
문제
https://leetcode.com/problems/user-activity-for-the-past-30-days-i/
정답
SELECT activity_date as day, COUNT(DISTINCT user_id) as active_users
FROM Activity
# BETWEEN is inclusive so subtract 29 days
WHERE activity_…
members
Leetcode - 1148. Article Views I
문제
https://leetcode.com/problems/article-views-i/submissions/
정답
SELECT author_id as 'id'
FROM Views
WHERE author_id = viewer_id
GROUP BY author_id
ORDER BY author_id…
members
Leetcode - 1158. Market Analysis I
문제
https://leetcode.com/problems/market-analysis-i/
정답
SELECT user_id AS buyer_id, join_date, IFNULL(COUNT(order_date), 0) AS orders_in_2019
FROM Users
LEFT JOIN Orders ON…
Coding Test
members
Leetcode - 1667. Fix Names in a Table
문제
Loading...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
정답…
Coding Test
members
Leetcode - 627. Swap Salary
문제
Loading...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
정답…
members
Leetcode - 1050. Actors and Directors Who Cooperated At Least Three Times
문제
Loading...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
정답…
Coding Test
members
Leetcode - 1084. Sales Analysis III
문제
Loading...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
정답…
members
Leetcode - 1729. Find Followers Count
문제
Loading...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
정답…