摘要: //My Method public static int searchInsert(int[] nums, int target) { int index = -1; for (int i=0; i<nums.length; i++) if (nums[i] == target) index = 阅读全文
posted @ 2020-04-26 14:45 CodeCorner 阅读(219) 评论(0) 推荐(0)