摘要: class Solution(object): def smallestK(self, arr, k): """ :type arr: List[int] :type k: int :rtype: List[int] """ self.quick_sort(arr, 0, len(arr) - 1) 阅读全文
posted @ 2021-09-03 11:22 楠海 阅读(35) 评论(0) 推荐(0)