members
Leetcode - 570. Managers with at Least 5 Direct Reports
문제
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
프로그래머스 - 코딩테스트 연습 - 정렬 - H-Index
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42747
정답
def solution(citations):
for h in range(len(citations) + 1, -1, -1):
if len(list(filter(lambda x:…
Coding Test
members
프로그래머스 - 코딩테스트 연습 - 정렬 - K번째수
문제
https://school.programmers.co.kr/learn/courses/30/lessons/42748
정답
def solution(array, commands):
result = []
for command in commands:
i, j, k = command
result.append(sorted(array[i-1:…
members
Leetcode - 550. Game Play Analysis IV
문제
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 - 512. Game Play Analysis II
문제
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 - 569. Median Employee 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
정답…
Coding Test
members
프로그래머스 - 코딩테스트 연습 - 깊이/너비 우선 탐색(DFS/BFS) - 타겟 넘버
문제
https://programmers.co.kr/learn/courses/30/lessons/43165
정답
얼핏 보기에 DFS가 아닌 것 같지만 DFS 문제이다. 주어지는 numbers 의 길이가 20개 이하기 때문에 재귀로 간단하게 해결이 가능하다.…
members
Leetcode - 601. Human Traffic of Stadium
문제
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
정답…