PracHub
QuestionsLearningGuidesInterview Prep

Quick Overview

This question evaluates a candidate's proficiency with frequency counting, selection techniques, use of appropriate data structures, and algorithmic time and space complexity analysis.

  • medium
  • NVIDIA
  • Coding & Algorithms
  • Software Engineer

Find Top K Frequent Elements

Company: NVIDIA

Role: Software Engineer

Category: Coding & Algorithms

Difficulty: medium

Interview Round: Technical Screen

##### Question LeetCode 347. Top K Frequent Elements – given an integer array nums, return the k most frequent elements. Initial requirement: return the top 3 elements; follow-up: generalize to arbitrary k. https://leetcode.com/problems/top-k-frequent-elements/description/

Quick Answer: This question evaluates a candidate's proficiency with frequency counting, selection techniques, use of appropriate data structures, and algorithmic time and space complexity analysis.

Given an integer array nums and an integer k, return a list of the k elements that appear most frequently in nums. Order the result by descending frequency; for elements with equal frequency, order them by ascending numeric value. Assume 1 <= k <= the number of distinct elements in nums.

Constraints

  • 1 <= len(nums) <= 200000
  • -10^9 <= nums[i] <= 10^9
  • 1 <= k <= number of distinct elements in nums
  • Output length is exactly k
  • Order: descending frequency; ties by ascending value

Hints

  1. Count occurrences with a hash map (e.g., collections.Counter).
  2. Sort distinct elements by (-frequency, value) and take the first k.
  3. Alternatively, use a heap of size k keyed by (frequency, -value) or bucket sort for linear-time selection.
Last updated: Mar 29, 2026

Loading coding console...

PracHub

Master your tech interviews with 9,000+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • AI Coding Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.

Related Coding Questions

  • Determine Whether One Point Can Reach Another - NVIDIA (hard)
  • Count Substrings with No Repeated Characters - NVIDIA (hard)
  • Compute the Final Robot Score - NVIDIA (easy)
  • Merge Overlapping Time Intervals - NVIDIA (medium)
  • Return all file paths via DFS - NVIDIA (easy)