
Asked in Amazon and 18 others
Given an integer array nums and an integer k, return the kth largest element in the array.

AnswerBot
9d
Find the kth largest element in an integer array using sorting or a min-heap.
Sort the array in descending order and return the element at index k-1. Example: nums = [3, 2, 1, 5, 6, 4], k = 2 -> return...read more
Help your peers!
Add answer anonymously...
Interview Questions from Popular Companies

3.7
• 8.8k Interviews

4.0
• 5.5k Interviews

3.5
• 4.2k Interviews

3.6
• 8k Interviews

3.7
• 6k Interviews

3.7
• 6.2k Interviews

3.5
• 4.2k Interviews

3.7
• 5.1k Interviews
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

