Skip to content

Commit 8fbb4e9

Browse files
committed
update
1 parent 6b3b18d commit 8fbb4e9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ Problem | Solution | Time | Space | Difficul
224224
[Integer to Roman] | [integer-to-roman.py] | _O(n)_ | _O(1)_ | Medium |
225225
[Palindrome Number] | [palindrome-number.py] | _O(1)_ | _O(1)_ | Easy |
226226
[Permutation Sequence] | [permutation-sequence.py] | _O(n)_ | _O(1)_ | Medium | `Cantor Ordering`
227+
[Reverse Integer] | [reverse-integer.py] | _O(logn)_ | _O(1)_ | Easy |
227228

228229
[Gray Code]:https://oj.leetcode.com/problems/gray-code/
229230
[gray-code.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/gray-code.py
@@ -233,6 +234,9 @@ Problem | Solution | Time | Space | Difficul
233234
[palindrome-number.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/palindrome-number.py
234235
[Permutation Sequence]:https://oj.leetcode.com/problems/permutation-sequence/
235236
[permutation-sequence.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/permutation-sequence.py
237+
[Reverse Integer]:https://oj.leetcode.com/problems/reverse-integer/
238+
[reverse-integer.py]:https://github.com/kamyu104/LeetCode/blob/master/Python/reverse-integer.py
239+
236240

237241
---
238242

0 commit comments

Comments
 (0)