Update twoSum问题的核心思想.md

This commit is contained in:
Jody Zhou
2020-11-11 20:12:06 -05:00
committed by GitHub
parent fa73577ee2
commit 0d82ea0639

View File

@ -211,3 +211,6 @@ class Solution:
return [i, hashTable[other_num]]
# 如果不存在的话继续处理剩余的数
hashTable[n] = i
'''