GoLang Solution For LeetCode Problem: Kth Largest Element in an Array
Solving Kth Largest Element in an Array in go. Please try yourself first to solve the problem and submit your implementation to LeetCode before looking into solution.
Problem Description
Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
Example 1:
Input: [3,2,1,5,6,4] and k = 2
Output: 5
Example 2:
Input: [3,2,3,1,2,4,5,5,6] and k = 4
Output: 4
Note:
See the full details of the problem Kth Largest Element in an Array at LeetCode
Originally posted at: @github.com/halfrost/LeetCode-Go
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.