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
- 코틀린기초
- 파이썬알고리즘풀기
- 파이썬 알고리즘
- 릿코드 파이썬
- 알고리즘풀이
- 상가수익률계산기
- 릿코드
- python priority queue
- python zip_longest
- python Leetcode
- leetcode풀기
- 알고리즘풀기
- python 릿코드
- leetcode 풀기
- 릿코드풀기
- 릿코드 풀기
- 파이썬릿코드풀기
- python sorted
- 잇츠디모
- 파이썬알고리즘
- 파이썬 릿코드
- 릿코드풀이
- 파이썬 알고리즘 풀기
- LeetCode
- leetcode풀이
- python 알고리즘
- binary search
- python xor
- 파이썬릿코드
- 파이썬 프로그래머스
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 169. Majority Element 본문
반응형
169. Majority Element
https://leetcode.com/problems/majority-element/
문제)
솔루션1)
class Solution:
def majorityElement(self, nums: List[int]) -> int:
half = len(nums)//2
counter = Counter(nums)
for n, count in counter.items():
if count > half:
return n
솔루션2)
class Solution:
def majorityElement(self, nums: List[int]) -> int:
return sorted(nums)[len(nums)//2]
솔루션3) Boyer-Moore 과반수 투표 알고리즘
class Solution:
def majorityElement(self, nums: List[int]) -> int:
count = 0
major = 0
for n in nums:
if count == 0:
major = n
count += 1
elif count == major:
count += 1
else:
count -= 1
return major
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 692. Top K Frequent Words (0) | 2022.02.23 |
---|---|
LeetCode 풀기 - 171. Excel Sheet Column Number (0) | 2022.02.22 |
LeetCode 풀기 - 1288. Remove Covered Intervals (0) | 2022.02.20 |
LeetCode 풀기 - 104. Maximum Depth of Binary Tree (0) | 2022.02.15 |
LeetCode 풀기 - 389. Find the Difference (0) | 2022.02.09 |
Comments