Skip to content

Commit 94c39bd

Browse files
committed
feat: two sum
1 parent 0d4fa89 commit 94c39bd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Leetcode_labuladong/1.两数之和.go

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* @lc app=leetcode.cn id=1 lang=golang
3+
*
4+
* [1] 两数之和
5+
*/
6+
7+
// @lc code=start
8+
// 用一個map, key紀錄number的值, value 紀錄number的index
9+
// 遍歷整個nums, 判斷map中是否有 "target-number"存入map, 如果有就可以將 index從map取出, 並回傳
10+
func twoSum(nums []int, target int) []int {
11+
m := make(map[int]int)
12+
for i, v := range nums {
13+
if j, ok := m[target-v]; ok {
14+
return []int{j, i}
15+
}
16+
m[v] = i
17+
}
18+
return nil
19+
}
20+
21+
// @lc code=end
22+

0 commit comments

Comments
 (0)