Update twoSum问题的核心思想.md

This commit is contained in:
Jody Zhou
2020-11-12 01:47:04 -05:00
committed by GitHub
parent c8539a630c
commit b606f9f3b9

View File

@ -191,7 +191,7 @@ int[] twoSum(int[] nums, int target) {
;; 只用一个哈希表
```Python3
```Python
class Solution:
def twoSum(self, nums, target):
"""