Loading

摘要: class Solution { public int[] twoSum(int[] nums, int target) { int i = 0; int j = nums.length - 1; while(i < j){ int s = nums[i] + nums[j]; if(s < tar 阅读全文
posted @ 2021-04-13 19:06 想用包子换论文 阅读(20) 评论(0) 推荐(0)