File tree 1 file changed +1
-1
lines changed 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 587
587
0012 | [ Integer to Roman] ( https://leetcode.com/problems/integer-to-roman/ ) | [ C++] ( ./C++/integer-to-roman.cpp ) [ Python] ( ./Python/integer-to-roman.py ) | _ O(n)_ | _ O(1)_ | Medium ||
588
588
0013 | [ Roman to Integer] ( https://leetcode.com/problems/roman-to-integer/ ) | [ C++] ( ./C++/roman-to-integer.cpp ) [ Python] ( ./Python/roman-to-integer.py ) | _ O(n)_ | _ O(1)_ | Easy ||
589
589
0029 | [ Divide Two Integers] ( https://leetcode.com/problems/divide-two-integers/ ) | [ C++] ( ./C++/divide-two-integers.cpp ) [ Python] ( ./Python/divide-two-integers.py ) | _ O(1)_ | _ O(1)_ | Medium ||
590
- 0050 | [ Pow(x, n)] ( https://leetcode.com/problems/powx-n/ ) | [ C++] ( ./C++/powx-n.cpp ) [ Python] ( ./Python/powx-n.py ) | _ O(1 )_ | _ O(1)_ | Medium ||
590
+ 0050 | [ Pow(x, n)] ( https://leetcode.com/problems/powx-n/ ) | [ C++] ( ./C++/powx-n.cpp ) [ Python] ( ./Python/powx-n.py ) | _ O(logn )_ | _ O(1)_ | Medium ||
591
591
0060 | [ Permutation Sequence] ( https://leetcode.com/problems/permutation-sequence/ ) | [ C++] ( ./C++/permutation-sequence.cpp ) [ Python] ( ./Python/permutation-sequence.py ) | _ O(n^2)_ | _ O(n)_ | Medium || ` Cantor Ordering `
592
592
0065 | [ Valid Number] ( https://leetcode.com/problems/valid-number/ ) | [ C++] ( ./C++/valid-number.cpp ) [ Python] ( ./Python/valid-number.py ) | _ O(n)_ | _ O(1)_ | Hard || ` Automata `
593
593
0089 | [ Gray Code] ( https://leetcode.com/problems/gray-code/ ) | [ C++] ( ./C++/gray-code.cpp ) [ Python] ( ./Python/gray-code.py ) | _ O(2^n)_ | _ O(1)_ | Medium ||
You can’t perform that action at this time.
0 commit comments