首页 > 其他 > 详细

two sum --无脑法

时间:2017-10-12 00:22:21      阅读:226      评论:0      收藏:0      [点我收藏+]
public class Solution {
    /*
     * @param numbers: An array of Integer
     * @param target: target = numbers[index1] + numbers[index2]
     * @return: [index1 + 1, index2 + 1] (index1 < index2)
     */
    public int[] twoSum(int[] numbers, int target) {
        // write your code here
        int res[] = new int[2];
        for(int i = 0; i<numbers.length;i++){
            for( int j = i+1; j < numbers.length;j++){
                if(numbers[i] + numbers[j] == target){
                    res[0] = i+1;
                    res[1] = j+1;
                }
            }
        }
        return res;
    }
}

 

two sum --无脑法

原文:http://www.cnblogs.com/heylinart/p/7653398.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!