Given an array of integers that is already sorted in ascending order, find two numbers such that the

这道题自己思路也对了,就是数组使用出了点问题,然后就是看了别人的代码才改过来,用到匿名数组。

不多说,看代码,

 

class Solution {
    public int[] twoSum(int[] numbers, int target) {
    if(numbers==null || numbers.length < 1) return null;
        int i=0, j=numbers.length-1;
        
        while(i             int x = numbers[i] + numbers[j];
            if(x                 ++i;
            } else if(x>target) {
                --j;
            } else {
                return new int[]{i+1, j+1};
            }
        }
        return null;

    }
}

你可能感兴趣的:(LeetCode刷题)