[Array] Majority Element
2021. 1. 17. 12:45ㆍ프로그래밍-코딩테스트/LeetCode
Given an array nums of size n, return the majority element.
The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that the majority element always exists in the array.
간단한 문제
단, 시간복잡도를 고려해서 최대한 Loop를 한번만 돌리자
그렇게 하기 위해서는 index 배열을 하나 만들어놓고, Loop한번마다 index를 카운팅 하면 된다
'프로그래밍-코딩테스트 > LeetCode' 카테고리의 다른 글
[Array] Best Time to Buy and Sell Stock (0) | 2021.01.17 |
---|---|
[Linked List] Merge Two Sorted Lists (0) | 2021.01.17 |
[Linked List] Reverse Linked List (0) | 2021.01.13 |
[Array] Find All Numbers Disappeared in an Array (0) | 2021.01.11 |
[Array] Third Maximum Number (0) | 2021.01.11 |