Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laizimo/leetcode-answer
:question:此项目记录leetcode的算法题题解,使用javascript语言。
https://github.com/laizimo/leetcode-answer
javascript leetcode solutions
Last synced: 3 months ago
JSON representation
:question:此项目记录leetcode的算法题题解,使用javascript语言。
- Host: GitHub
- URL: https://github.com/laizimo/leetcode-answer
- Owner: laizimo
- Created: 2017-09-20T10:41:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-06T03:09:39.000Z (over 4 years ago)
- Last Synced: 2023-11-07T22:24:11.495Z (about 1 year ago)
- Topics: javascript, leetcode, solutions
- Homepage:
- Size: 185 KB
- Stars: 223
- Watchers: 3
- Forks: 13
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# leetcode-answer
此项目记录leetcode的算法题题解,使用javascript语言。# 题目汇总
### 数字
[整数反转 - 第七题](https://github.com/laizimo/leetcode-answer/issues/8)
[字符串转换整数 (atoi) - 第八题](https://github.com/laizimo/leetcode-answer/issues/9)
[整数转罗马数字 - 第十二题](https://github.com/laizimo/leetcode-answer/issues/13)
[罗马数字转整数 - 第十三题](https://github.com/laizimo/leetcode-answer/issues/14)
### 字符串
[无重复字符的最长子串 - 第三题](https://github.com/laizimo/leetcode-answer/issues/4)
[Z 字形变换 - 第六题](https://github.com/laizimo/leetcode-answer/issues/7)
[最长公共前缀 - 第十四题](https://github.com/laizimo/leetcode-answer/issues/15)
[电话号码的字母组合 - 第十七题](https://github.com/laizimo/leetcode-answer/issues/18)
### 数组
[两数之和 - 第一题](https://github.com/laizimo/leetcode-answer/issues/2)
[盛最多水的容器 - 第十一题](https://github.com/laizimo/leetcode-answer/issues/12)
[三数之和 - 第十五题](https://github.com/laizimo/leetcode-answer/issues/16)
[最接近三数之和 - 第十六题](https://github.com/laizimo/leetcode-answer/issues/17)
[四数之和 - 第十八题](https://github.com/laizimo/leetcode-answer/issues/19)
### 链表
[两数相加 - 第二题](https://github.com/laizimo/leetcode-answer/issues/3)
[删除链表的倒数第N个节点 - 第十九题](https://github.com/laizimo/leetcode-answer/issues/20)
[合并两个有序链表 - 第二十一题](https://github.com/laizimo/leetcode-answer/issues/22)
### 栈
[有效的括号 - 第二十题](https://github.com/laizimo/leetcode-answer/issues/21)
### 树
### 递归
[回文数 - 第九题](https://github.com/laizimo/leetcode-answer/issues/10)
[正则表达式匹配 - 第十题](https://github.com/laizimo/leetcode-answer/issues/11)
### 动态规划
[最长回文子串 - 第五题](https://github.com/laizimo/leetcode-answer/issues/6)
### 二分法
[寻找两个正序数组的中位数 - 第四题](https://github.com/laizimo/leetcode-answer/issues/5)
### 贪婪算法
### 分治算法