This Repository is the code for leetcode, The naming rules are as follows:
AAAA_BBB_CCC.DD
AAAA is Difficulty[easy, medium, hard]
BBB is the Serial number[001, 002, 003...]
CCC is Name
DD is suffix[py, c, java...]
| Navigation | |||
|---|---|---|---|
| # | Title | Difficulty | Solution |
| 001 | two-sum | easy | python | java |
| 002 | add-two-numbers | medium | python | java |
| 007 | reverse-integer | easy | python |
| 009 | palindrome-number | easy | python |
| 012 | integer-to-roman | medium | python |
| 013 | roman-to-integer | easy | python |
| 014 | longest-common-prefix | easy | python |
| 019 | remove-nth-node-from-end-of-list | medium | python | java |
| 020 | valid-parentdeses | easy | python |
| 021 | merge-two-sorted-lists | easy | python | java |
| 026 | remove-duplicates-from-sorted-array | easy | python |
| 027 | remove-element | easy | python |