码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】1. Two Sum

时间:2016-04-10 01:01:31      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

按样例输入是乱序的,只能用n^2解法

 

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

 

【leetcode】1. Two Sum

标签:

原文地址:http://www.cnblogs.com/lanhj/p/5373173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!