Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/caitaozhan/leetcode
LeetCode Problems
https://github.com/caitaozhan/leetcode
leetcode
Last synced: 22 days ago
JSON representation
LeetCode Problems
- Host: GitHub
- URL: https://github.com/caitaozhan/leetcode
- Owner: caitaozhan
- Created: 2018-07-02T02:06:07.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T18:01:22.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T07:38:03.930Z (over 1 year ago)
- Topics: leetcode
- Language: Python
- Homepage: https://leetcode.com/caitao/
- Size: 681 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode
How to solve LeetCode Problems:1. have a sense what kind of method to use, do some scratches on paper/iPad.
2. code the solution. break down a big problem to small problems. utilize the idea of modulation.
3. make the general cases correct
4. make the corner cases and edge conditions correct (such as an empty list as input)
5. (optional) make the program faster