169. Majority Element (C++)
https://leetcode.com/problems/majority-element/ Majority Element - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 한 배열 안에서 가장 많은 숫자가 무엇인지 알아내는 문제인데 문제의 조건에서 The majority element is the element that appears more than ⌊n / 2⌋ times. 이라고 나와있다. 즉, 가장 많은 숫자 등장 횟수는 배열 길이의 절반 이상보다 많다는 걸 ..
알고리즘/leetcode
2021. 10. 31. 22:58