class Solution {
    public int[] twoSum(int[] nums, int target) {
        for (int i = 0; i < nums.length;i++){
            for(int j = i + 1;j < nums.length;j++){
                if (nums[j] == target - nums[i]){
                    return new int[] { i , j };
                }
            }
        } 
        throw new IllegalArgumentException("No two sum solution");
    } 
}

  

相关文章:

  • 2021-05-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-13
猜你喜欢
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案