摘要: 题目描述: 解法一:二分法 提交:O(nlogn) class Solution: def findBestValue(self, arr: List[int], target: int) -> int: def helper(num): res = 0 for i in arr: if i > n 阅读全文
posted @ 2020-06-14 23:50 oldby 阅读(147) 评论(0) 推荐(0) 编辑