An open API service indexing awesome lists of open source software.

https://github.com/chchwy/leetcode

My leetcode journey
https://github.com/chchwy/leetcode

leetcode

Last synced: 8 months ago
JSON representation

My leetcode journey

Awesome Lists containing this project

README

          

# LeetCode by chchwy

My leetcode code.

## Log

2022/06/16
- #133 Clone Graph (Graph) M

2022/06/13
- #125 Valid Palindrome (String) E
- #21 Merge Two Sorted Lists (Linked List) E
- #110 Balanced Binary Tree (Binary Tree) E

2022/06/10
- #131 Palindrome Partitioning (Backtracking, String) M
- #93 Restore IP Addresses (Backtracking, String) M

2022/06/06
- #232 Implement Queue using Stacks (Stack, Queue) E
- #225 Implement Stack using Queues (Stack, Queue) E
- #71 Simplify Path (String, Stack) M
- #39 Combination Sum (Backtracking) M
- #40. Combination Sum II (Backtracking) M

2022/06/02
- #216 Combination Sum III (Backtracking) M
- #17 Letter Combinations of a Phone Number (Backtracking) M

2022/06/01
- #53 Maximum Subarray (Dynamic Programming) E
- #144 Binary Tree Preorder Traversal (Binary Tree) E
- #145 Binary Tree Postorder Traversal (Binary Tree) E
- #77 Combinations (Backtracking) M

2022/05/31
- #242 Valid Anagram (String, Hash Table) E
- #1002 Find Common Characters (String, Hash Table) E
- #20 Valid Parentheses (String, Stack) E
- #226 Invert Binary Tree (Binary Tree) E
- #733 Flood Fill (Graph, BFS) E

2022/05/30
- #160 Intersection of Two Linked Lists (Linked List, Two Pointers) E
- #141 Linked List Cycle (Linked List, Two Pointers) E

2022/05/27
- #203 Remove Linked List Elements (Linked List) E
- #237 Delete Node in a Linked List (Linked List) E
- #2095 Delete the Middle Node of a Linked List (Linked List, Two Pointers) M
- #707 Design Linked List (Linked List) M
- #206 Reverse Linked List (Linked List) E

2022/05/26
- #27 Remove Element (Array, Two Pointers) E
- #26 Remove Duplicates from Sorted Array (Array, Two Pointers) E
- #80 Remove Duplicates from Sorted Array II (Array, Two Pointers) M

2022/05/25
- #704 Binary Search Tree (Array, Binary Search) E
- #35 Search Insert Position (Array, Binary Search) E
- #34 Find First and Last Position of Element in Sorted Array (Array, Binary Search) M

2022/05/24
- #5 Longest Palindromic Substring (String, DP) M