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

leetcode 1-10 题解记录

时间:2019-09-09 19:11:24      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:返回值   int   numbers   two sum   throw   ++   i++   tar   target   

1. Two Sum [Easy]

思路

水题

要点

  1. map用法: put, get, containsKey
  2. 声明数组new int[]{1, 2};
  3. 异常情况还需要返回值的话, 抛IllegalArgumentException

代码

class Solution {
    public int[] twoSum(int[] nums, int target) {
        Map<Integer, Integer> map=new HashMap();
        
        for (int i=0; i<nums.length; i++){
            int tmp=target-nums[i];
            if (map.containsKey(tmp)){
                int idx=map.get(tmp);
                if (i!=idx) return new int[]{idx, i};
            }map.put(nums[i], i);
        }
        throw new IllegalArgumentException();
    }
}

2. Add Two Numbers [Medium]

leetcode 1-10 题解记录

标签:返回值   int   numbers   two sum   throw   ++   i++   tar   target   

原文地址:https://www.cnblogs.com/tanglizi/p/11493520.html

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