https://leetcode.com/problems/find-the-kth-largest-integer-in-the-array/



Runtime: 558 ms, faster than 14.29% of TypeScript online submissions for Find the Kth Largest Integer in the Array.

Memory Usage: 67.2 MB, less than 14.29% of TypeScript online submissions for Find the Kth Largest Integer in the Array.



```typescript
function bigSorting(unsorted) {
    return unsorted.sort((a, b) => (BigInt(a) > BigInt(b))? 0 : -1 );
}

function kthLargestNumber(nums: string[], k: number): string {
    /*
    //8:03
    const newNums = nums.map((value:any)=>{return Number(value)})
    newNums.sort((a, b) => a - b);
    return String(newNums[newNums.length-k])
    //8:06
    */
    
    //8:11
    const newNums = bigSorting(nums)
    return newNums[newNums.length-k]
    //8:12
};
```
