标签:题解 -- 分析 找不到 width png 关于 ref 和为s的两个数字
思路分析
代码如下
public int[] twoSum(int[] nums, int target) {
int left = 0, right = nums.length - 1;
while (left < right) {
int s = nums[left] + nums[right];
if (s == target) return new int[]{nums[left], nums[right]};
else if (s > target) right--;
else left++;
}
return new int[0];
}
标签:题解 -- 分析 找不到 width png 关于 ref 和为s的两个数字
原文地址:https://www.cnblogs.com/duduwy/p/13390534.html