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 |
Tags
- 프로그래머스 파이썬
- 편스토랑 우승상품
- 편스토랑
- 데이콘
- ubuntu
- SW Expert Academy
- 백준
- programmers
- 자연어처리
- Docker
- 우분투
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- 금융문자분석경진대회
- ChatGPT
- Kaggle
- 프로그래머스
- gs25
- Git
- 코로나19
- 캐치카페
- dacon
- 맥북
- 더현대서울 맛집
- github
- PYTHON
- leetcode
- hackerrank
- 파이썬
- AI 경진대회
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