Skip to content

Commit 93da4fc

Browse files
xingminghaoel
xingming
authored andcommitted
modify name to twoSum and readme
1 parent 4f661e7 commit 93da4fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ LeetCode
404404
|4|[Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/)| [C++](./algorithms/cpp/medianOfTwoSortedArrays/medianOfTwoSortedArrays.cpp)|Hard|
405405
|3|[Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/)| [C++](./algorithms/cpp/longestSubstringWithoutRepeatingCharacters/longestSubstringWithoutRepeatingCharacters.cpp)|Medium|
406406
|2|[Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)| [C++](./algorithms/cpp/addTwoNumbers/addTwoNumbers.cpp)|Medium|
407-
|1|[Two Sum](https://leetcode.com/problems/two-sum/)| [C++](./algorithms/cpp/twoSum/twoSum.cpp)|Easy|
407+
|1|[Two Sum](https://leetcode.com/problems/two-sum/)| [C++](./algorithms/cpp/twoSum/twoSum.cpp)[Go](./algorithms/golang/twoSum/twoSum.cpp)|Easy|
408408

409409

410410
### LeetCode Shell

algorithms/golang/addTwoNumbers/addTwoNumbers.go algorithms/golang/twoSum/twoSum.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package addTwoNumbers
1+
package twoSum
22

33
func twoSum(nums []int, target int) []int {
44
numMap := make(map[int]int)

0 commit comments

Comments
 (0)