Coding Test
190 posts
Coding Test
members
프로그래머스 - 연습문제 - 야근 지수
문제
https://school.programmers.co.kr/learn/courses/30/lessons/12927
정답
max heap
import heapq
def solution(n, works):
works = [-work for work in works]
heapq.heapify(works)
for…
Coding Test
members
프로그래머스 - 깊이/너비 우선 탐색(DFS/BFS) -네트워크
문제
https://school.programmers.co.kr/learn/courses/30/lessons/43162#
정답
def solution(n, computers):
visited = [0 for _ in range(n)]
networks = 0
for node in range(n):
if…
members
프로그래머스 - 연습문제 -최고의 집합
문제
https://school.programmers.co.kr/learn/courses/30/lessons/12938
정답
아이디어가 없으면 풀 수 없는 문제 ㅜㅜ 결국 답을 보고 풀었다.
def solution(n, s):
quotion = s // n…
Coding Test
members
프로그래머스 - 동적계획법(Dynamic Programming) - 정수 삼각형
문제
https://school.programmers.co.kr/learn/courses/30/lessons/43105
정답
가장 좌측과 우측 값은 계속 더해지지만, 가운데 값은 경로상에서 더 큰값만 더하면 된다는 아이디어가 필요한 문제였다.
def solution(…
members
Leetcode - 1098. Unpopular Books
문제
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 - 1076. Project Employees 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 - 1075. Project Employees I
문제
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 - 1083. Sales 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 - 1082. Sales Analysis I
문제
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
정답…