Leetcode1 Two sum
题目描述
1 2 3 4
| Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].
|
代码
1 2 3 4 5 6 7 8 9 10 11
| 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[i]+nums[j]==target) return new int[]{i,j}; } } throw new IllegalArgumentException("NO TWO SUM SOLUTION"); } }
|
-------------本文结束感谢您的阅读-------------
Welcome to my other publishing channels