摘要: public int searchInsert(int[] nums, int target) { int n = nums.length; int left = 0, right = n-1, ans = n; while(left <= right) { // [left, right] int 阅读全文
posted @ 2021-09-26 21:58 Peterxiazhen 阅读(164) 评论(0) 推荐(0) 编辑