Coding Test
190 posts
Coding Test
members
Leetcode - 183. Customers Who Never Order
문제
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 - 584. Find Customer Referee
문제
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 - 1757. Recyclable and Low Fat Products
문제
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 - 595. Big Countries
문제
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
프로그래머스: 코딩테스트 연습 - 해시 - 베스트앨범
문제
https://programmers.co.kr/learn/courses/30/lessons/42579
정답
from collections import defaultdict
def solution(genres, plays):
summary = defaultdict(list)
plays_summary = defaultdict(int)
index = 0
for genre,…
Coding Test
members
프로그래머스: 코딩테스트 연습 - 해시 - 위장
문제
https://programmers.co.kr/learn/courses/30/lessons/42578
정답
from collections import defaultdict
def solution(clothes):
comb = defaultdict(list)
for cloth, category in clothes:
comb[category].append(cloth)…