Statement▼
Given an array of strings, nums, where each string represents an integer without leading zeros, and an integer k, your task is to find and return the string representing the k
Note: Treat duplicate integers as distinct entities. For instance, if
nums=[“2”, “3”, “3”] , the first largest integer is“3” , the second largest is also“3” , and the third largest is...