0%

Leetcode1 Two sum

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");
}
}
-------------本文结束感谢您的阅读-------------

本文标题:Leetcode1 Two sum

文章作者:Jungle

发布时间:2020年05月23日 - 21:42

最后更新:2020年05月26日 - 10:43

原始链接:http://yoursite.com/2020/05/23/LeetCode1/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

Welcome to my other publishing channels