https://github.com/argentum11/leetcode_note
my personal leetcode note
https://github.com/argentum11/leetcode_note
Last synced: 10 months ago
JSON representation
my personal leetcode note
- Host: GitHub
- URL: https://github.com/argentum11/leetcode_note
- Owner: Argentum11
- Created: 2023-12-12T14:27:31.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T13:14:33.000Z (almost 2 years ago)
- Last Synced: 2024-02-21T14:29:37.727Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# leetcode_note
[review](review.md)
## sorting
[1464. Maximum Product of Two Elements in an Array](1464.md)
[2966. Divide Array Into Arrays With Max Difference](2966.md)
## matrix
[1582. Special Positions in a Binary Matrix](1582.md)
[2482. Difference Between Ones and Zeros in Row and Column](2482.md)
## hash table
[242. Valid Anagram](242.md)
[1657. Determine if Two Strings Are Close](1657.md)
## string
[13. Roman to Integer](13.md)
[1758. Minimum Changes To Make Alternating Binary String](1758.md)
## greedy
[2870. Minimum Number of Operations to Make Array Empty](2870.md)
## dynamic programming
[70. Climbing Stairs](70.md)
[300. Longest Increasing Subsequence](300.md)
## tree
[543. Diameter of Binary Tree](543.md)
[1026. Maximum Difference Between Node and Ancestor](1026.md)
## bit manipulation
[201. Bitwise AND of Numbers Range](201.md)
[1457. Pseudo-Palindromic Paths in a Binary Tree](1457.md)
## Monotonic Stack
[739. Daily Temperatures](739.md)
## counting
[169. Majority Element](169.md)
## two pointers
[2149. Rearrange Array Elements by Sign](2149.md)