Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 파이썬 알고리즘
- leetcode풀이
- 파이썬 알고리즘 풀기
- leetcode 풀기
- python 릿코드
- binary search
- 릿코드풀기
- 파이썬알고리즘
- python Leetcode
- 릿코드풀이
- 파이썬릿코드풀기
- 파이썬 프로그래머스
- python sorted
- LeetCode
- 파이썬릿코드
- 파이썬 릿코드
- 잇츠디모
- python zip_longest
- python xor
- 릿코드
- 알고리즘풀이
- 코틀린기초
- 파이썬알고리즘풀기
- 알고리즘풀기
- python priority queue
- 릿코드 풀기
- leetcode풀기
- 상가수익률계산기
- python 알고리즘
- 릿코드 파이썬
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 692. Top K Frequent Words 본문
반응형
692. Top K Frequent Words
https://leetcode.com/problems/top-k-frequent-words/
문제)
솔루션1) sorted() 다중 정렬
sorted() 함수의 다중 정렬을 사용하면 문제를 쉽게 해결할 수 있습니다.
class Solution(object):
def topKFrequent(self, words, k):
"""
:type words: List[str]
:type k: int
:rtype: List[str]
"""
counter = Counter(words)
words = list(counter.items())
# counter 내림차순 정렬, word 오른차순 정렬
words = sorted(words, key=lambda x: (-x[1], x[0]))
words = words[:k]
return [word[0] for word in words]
솔루션2) PriorityQueue 사용
우선순위큐를 사용합니다.
Word라는 클래스를 구현하고 우선순위 큐에서 Word간 비교를 하기 위해서 __lt__() 함수를 정의합니다.
from queue import PriorityQueue
class Word:
def __init__(self, word, count):
self.word = word
self.count = count
# count 내림차순, word 오름차순
def __lt__(self, other):
if self.count > other.count:
return True
elif self.count == other.count:
if self.word < other.word:
return True
return False
class Solution(object):
def topKFrequent(self, words, k):
counter = Counter(words)
words = []
for w, c in counter.items():
words.append(Word(w, c))
q = PriorityQueue()
for word in words:
q.put(word)
return [q.get().word for i in range(k)]
함께 보면 좋은 글:
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 215. Kth Largest Element in an Array (0) | 2022.02.24 |
---|---|
LeetCode 풀기 - 200. Number of Islands (0) | 2022.02.23 |
LeetCode 풀기 - 171. Excel Sheet Column Number (0) | 2022.02.22 |
LeetCode 풀기 - 169. Majority Element (0) | 2022.02.22 |
LeetCode 풀기 - 1288. Remove Covered Intervals (0) | 2022.02.20 |
Comments