1. Two Sum
程序员文章站
2022-03-10 20:41:44
...
1. Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.
Example:
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].
java实现
public class Solution {
public int[] twoSum(int[] nums, int target) {
List<Integer> intList=new ArrayList();
for(int i=0;i<nums.length;i++){
for(int j=0;j<i;j++){
if(nums[i]+nums[j]==target){
intList.add(j);
intList.add(i);
}
}
}
Integer[] ints=intList.toArray(new Integer[intList.size()]);
int[] intArray = new int[ints.length];
for(int i=0; i < ints.length; i ++)
{
intArray[i] = ints[i].intValue();
}
return intArray;
}
}
推荐阅读
-
Python中使用md5sum检查目录中相同文件代码分享
-
go-micro 入门教程1.搭建 go-micro环境
-
[codewars_python]Sum of Digits / Digital Root
-
基于Python中求和函数sum的用法详解
-
对python中array.sum(axis=?)的用法介绍
-
python 列表,数组和矩阵sum的用法及区别介绍
-
1.基础语法
-
sum(case when then)(判断男女生的个数)
-
CMU-15445 LAB3:事务隔离,two-phase locking,锁管理器
-
Python的“二维”字典 (two-dimension dictionary)定义与实现方法