Leet Code OJ 1. Two Sum [Difficulty: Easy]

Posted Lnho

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leet Code OJ 1. Two Sum [Difficulty: Easy]相关的知识,希望对你有一定的参考价值。

题目:
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].

翻译:
给定一个整形数组和一个整数target,返回2个元素的下标,它们满足相加的和为target。
你可以假定每个输入,都会恰好有一个满足条件的返回结果。

代码:

public class Solution {
    public int[] twoSum(int[] nums, int target) {
        int[] result=new int[2];
        for(int i=0;i<nums.length-1;i++){
            for(int j=i+1;j<nums.length;j++){
                if(nums[i]+nums[j]==target){
                    return new int[]{i,j};
                }
            }
        }
        return result;
    }
}

以上是关于Leet Code OJ 1. Two Sum [Difficulty: Easy]的主要内容,如果未能解决你的问题,请参考以下文章

leet code Two Sum

Leet Code OJ 338. Counting Bits [Difficulty: Easy]

Leet Code OJ 338. Counting Bits [Difficulty: Medium]

Leet Code OJ 189. Rotate Array [Difficulty: Easy]

Leet Code OJ 66. Plus One [Difficulty: Easy]

Leet Code OJ 118. Pascal's Triangle [Difficulty: Easy]