Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luhc228/myleetcode
LeetCode solutions in JS.
https://github.com/luhc228/myleetcode
javascript leetcode
Last synced: about 2 months ago
JSON representation
LeetCode solutions in JS.
- Host: GitHub
- URL: https://github.com/luhc228/myleetcode
- Owner: luhc228
- Created: 2019-07-08T03:42:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-07T06:59:18.000Z (almost 5 years ago)
- Last Synced: 2024-10-11T14:10:41.408Z (3 months ago)
- Topics: javascript, leetcode
- Language: JavaScript
- Homepage:
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 记录Leetcode题目题解
## 目录
### Array 数组
- 11. container-with-most-water
- 15. 3sum
- 26. remove-duplicates-from-sorted-array
- 66. plus-one
- 70. climbing-stairs
- 88. merge-sorted-array
- 283. move-zeros### LinkList 链表
### Tree 树
### Recursion 递归
### Divide 分治
### Backtracking 回溯
### Sort 排序
### Hash 哈希表和映射
### BFS & DFS 深度优先和广度优先
### Greedy 贪心
### BinarySearch 二分查找
- 33. search-in-rotated-sorted-array
- 69. Sqrt(x)
- 74.
- 153.
- 367. valid-perfect-square### Dymamic Programming 动态规划
- 62. unique-paths
- 63. unique-paths-ii
- 72. edit-distance### Trie 字典树
### 位运算
- 191. number-of-1-bits### Other 其他的题目,包括部分每日一题和数学的题目