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

1. 两数之和

时间:2019-03-12 23:50:04      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:enumerate   target   class   for   elf   两数之和   list   func   rate   

  • Python3
class Solution:
    def twoSum(self, nums: List[int], target: int) -> List[int]:
        mapping = {}
        for num, value in enumerate(nums):
            value2 = target - value
            if value2 in mapping:
                return [mapping[value2], num]
            mapping[value] = num
  • Go
func twoSum(nums []int, target int) []int {
    mapping := map[int]int{}
    for n, num := range nums {
        num2 := target - num
        if _, ok := mapping[num2]; ok {
            return []int{mapping[num2], n}
        }
        mapping[num] = n
    }
    return []int{0,0}
}

1. 两数之和

标签:enumerate   target   class   for   elf   两数之和   list   func   rate   

原文地址:https://www.cnblogs.com/leisurelylicht/p/1-liang-shu-zhi-he.html

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