Leetcode 1. Two Sum

来源:互联网 发布:网络博客犯法吗 编辑:程序博客网 时间:2024/06/05 14:57

题目:

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, and you may not use the same element twice.

题目大意:

求一个数组中的两个元素的下标 , 这两个元素相加和为target

思路:

我用的最简单的枚举法 , 应该有更好的方法

class Solution {    public static int[] twoSum(int[] nums, int target) {        int[] i = new int[2];        for(int x=0;x<nums.length;x++) {            for(int j=x+1;j<nums.length;j++) {                if(nums[x]+nums[j]==target) {                    i[0] = x;                    i[1] = j;                    break;                }            }        }        return i;    }    public static void main(String[] args) {        int[] i = twoSum(new int[] {2,7,11,15},9);        for(int x:i)            System.out.println(x);    }}
原创粉丝点击