Skip to content

Latest commit

 

History

History
77 lines (32 loc) · 1.17 KB

File metadata and controls

77 lines (32 loc) · 1.17 KB

中文文档

Description

Given a non-empty array of integers, return the k most frequent elements.

Example 1:

Input: nums = [1,1,1,2,2,3], k = 2

Output: [1,2]

Example 2:

Input: nums = [1], k = 1

Output: [1]

Note:

    <li>You may assume <i>k</i> is always valid, 1 &le; <i>k</i> &le; number of unique elements.</li>
    
    <li>Your algorithm&#39;s time complexity <b>must be</b> better than O(<i>n</i> log <i>n</i>), where <i>n</i> is the array&#39;s size.</li>
    

Solutions

Python3

Java

...