167. Two Sum II - Input array is sorted

找到两个值加起来和为target
使用二分查找。


167. Two Sum II - Input array is sorted_第1张图片
class Solution {
    public int[] twoSum(int[] numbers, int target) {
       int[] num=new int[2];
        for(int i=0;i

你可能感兴趣的:(167. Two Sum II - Input array is sorted)