摘要: var KthLargest = function(k, nums) { this.nums = nums this.k = k this.stack = new Stack() for(let i = 0; i < nums.length; i++){ this.stack.add(nums[i] 阅读全文
posted @ 2021-02-18 21:36 张最棒 阅读(88) 评论(1) 推荐(0) 编辑