File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments