码迷,mamicode.com
首页 > 编程语言 > 详细

leetcode 1. Two Sum (java)

时间:2020-03-12 14:41:34      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:shm   put   two sum   ++   ash   red   hashmap   tco   for   

 1 class Solution {
 2     public int[] twoSum(int[] nums, int target) {
 3         Map<Integer, Integer> map = new HashMap<>();
 4         for (int i = 0; i < nums.length; i++) {
 5             int desired = target - nums[i];
 6             if (map.containsKey(desired)) {
 7                 return new int[] {map.get(desired), i};
 8             } else {
 9                 map.put(nums[i], i);
10             }
11         }
12         return new int[2];
13     }
14 }

 

leetcode 1. Two Sum (java)

标签:shm   put   two sum   ++   ash   red   hashmap   tco   for   

原文地址:https://www.cnblogs.com/eniac-inner/p/12468851.html

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