Skip to content

Commit 62b9a54

Browse files
committed
update
1 parent 35c532f commit 62b9a54

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
File renamed without changes.

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Problem | Solution | Time | Space | Difficul
231231
[Max Points on a Line] | [max-points-on-a-line.py] | _O(n^2)_ | _O(n)_ | Hard |
232232
[Minimum Window Substring] | [minimum-window-substring.py] | _O(n^2)_ | _O(n)_ | Hard |
233233
[Substring with Concatenation of All Words] | [substring-with-concatenation-of-all-words.py] | _O(m * n * k)_ | _O(n * k)_ | Hard |
234-
234+
[Two Sum] | [two-sum.py] | _O(n)_ | _O(n)_ | Hard |
235235

236236
[Longest Substring Without Repeating Characters]:https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/
237237
[longest-substring-without-repeating-characters.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/longest-substring-without-repeating-characters.py
@@ -241,6 +241,8 @@ Problem | Solution | Time | Space | Difficul
241241
[minimum-window-substring.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/minimum-window-substring.py
242242
[Substring with Concatenation of All Words]:https://oj.leetcode.com/problems/substring-with-concatenation-of-all-words/
243243
[substring-with-concatenation-of-all-words.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/substring-with-concatenation-of-all-words.py
244+
[Two Sum]:https://oj.leetcode.com/problems/two-sum.py/
245+
[two-sum.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/two-sum.py
244246

245247
---
246248

0 commit comments

Comments
 (0)