赞
踩
问:给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
原题链接:https://leetcode.cn/problems/two-sum/
答:
class Solution { public int[] twoSum(int[] nums, int target) { int i,j; int f = 0; for( i = 0;i < nums.length;i++) { for( j = i+1;j < nums.length; j++) if(nums[i] + nums[j] == target && i!=j) { return new int[] {i,j}; } } return null; } }
解析:遍历每个数组元素,查找是否有两个数之和为target,如果有,返回一个新数组。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。