Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 편스토랑 우승상품
- 코로나19
- 맥북
- leetcode
- hackerrank
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- 프로그래머스
- 백준
- ubuntu
- programmers
- github
- 우분투
- SW Expert Academy
- dacon
- AI 경진대회
- 자연어처리
- Docker
- 파이썬
- PYTHON
- 캐치카페
- ChatGPT
- 편스토랑
- Kaggle
- gs25
- Git
- 프로그래머스 파이썬
- 더현대서울 맛집
- Baekjoon
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 169. Majority Element (Python) 본문
728x90
반응형
Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.
You may assume that the array is non-empty and the majority element always exist in the array.
Example 1:
Input: [3,2,3]
Output: 3
Example 2:
Input: [2,2,1,1,1,2,2]
Output: 2
Solution
class Solution:
def majorityElement(self, nums: List[int]) -> int:
keys = set(nums)
answer = 0
for key in keys:
if nums.count(key) > len(nums) / 2:
answer = key
break
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 11054번 : 가장 긴 바이토닉 부분 수열 (Python) (0) | 2020.06.28 |
---|---|
[BaekJoon] 11052번 : 카드 구매하기 (Python) (0) | 2020.06.28 |
[leetCode] 507. Perfect Number (Python) (0) | 2020.06.22 |
[leetCode] 541. Reverse String II (Python) (0) | 2020.06.22 |
[HackerRank] Sorting: Comparator (Python) (0) | 2020.06.20 |
Comments