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

leetcode刷题记录

时间:2018-10-14 19:02:48      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:tco   两数之和   解法   pre   return   map   new   for   public   

  • 简单

1 twosum两数之和

暴力解法:

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

hashmap:

 

leetcode刷题记录

标签:tco   两数之和   解法   pre   return   map   new   for   public   

原文地址:https://www.cnblogs.com/huxinga/p/9787129.html

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