You are given an array of strings nums (representing non-negative integers) and integer k. Return the kth largest integer in nums (as a string). Compare by numeric value.
Use a min-heap of size k (comparing by numeric string length then lexicographically). The top element is the kth largest.
- Use a min-heap with comparator: compare by string length first, then lexicographically.
- Add each string to heap; if size > k, poll minimum.
- Return heap.peek().
- Time Complexity: O(N log k)
- Space Complexity: O(k)