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
- Climbing Stairs
- leedcode
- React hooks 남용 사례
- React 성능 최적화 방법
- 협업문화
- 알고리즘스터디
- RxJS 에러 처리
- DaleStudy
- RxJS 마블 다이어그램
- Blind75
- RxJS 결합 오퍼레이터
- 개발자커뮤니케이션
- RxJS 멀티캐스팅
- useCallback 성능 최적화
- React useCallback 사용법
- 알고리즘
- RxJS 변환 오퍼레이터
- RxJS 오퍼레이터
- Observable vs Array
- 달래스터디
- RxJS 생성 오퍼레이터
- RxJS 함수형 프로그래밍
- 자바스크립트 고차 함수 vs Observable
- 스쿼드조직
- useMemo 성능 최적화
- React 리렌더링 최적화
- leetcode
- React useMemo 사용법
- contains duplicate
- React useEffect 안티패턴
Archives
- Today
- Total
목록Top K Frequent Elements (1)
수쿵의 IT월드
문제Given an integer array nunmsand an integer k, return the kmost frequest elements. You may return the answer in any order. Example 1:Input: nums = [1,1,1,2,2,3], k = 2Output: [1,2] Example 2:Input: nums = [1], k = 1Output: [1] Constraints:1 -10^4 kis in the range [1, the number of unique elements in the array].It is guaranteed that the answer in unique.Follow up: Your algorithm's time complexit..
알고리즘
2025. 7. 26. 17:11