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

https://github.com/xwchris/leetcode

前端也要学习算法,记录Leetcode解题过程
https://github.com/xwchris/leetcode

algorithms frontend javascript leetcode

Last synced: 9 months ago
JSON representation

前端也要学习算法,记录Leetcode解题过程

Awesome Lists containing this project

README

          

# Leetcode
记录Leetcode解题过程。

题目来自Leetcode中文版平台(力扣 )[https://leetcode-cn.com/](https://leetcode-cn.com/)

| 问题 | 难度 | 原题链接 | 标签 |
| --- | --- | --- | --- |
| [3. 无重复最长子串](https://github.com/xwchris/Leetcode/tree/master/3.%20%E6%97%A0%E9%87%8D%E5%A4%8D%E6%9C%80%E9%95%BF%E5%AD%90%E4%B8%B2) | Medium | [传送门](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/submissions/) | 字符串 |
| [15. 三数之和](https://github.com/xwchris/Leetcode/tree/master/15.%20%E4%B8%89%E6%95%B0%E4%B9%8B%E5%92%8C) | Medium | [传送门](https://leetcode-cn.com/problems/3sum/) | 数组、排序 |
| [33. 搜索旋转排序数组](https://github.com/xwchris/Leetcode/tree/master/33.%20%E6%90%9C%E7%B4%A2%E6%97%8B%E8%BD%AC%E6%8E%92%E5%BA%8F%E6%95%B0%E7%BB%84) | Medium | [传送门](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/submissions/) | 数组,查找 |
| [42. 接雨水](https://github.com/xwchris/Leetcode/blob/master/42.%20%E6%8E%A5%E9%9B%A8%E6%B0%B4) | Hard | [传送门](https://leetcode-cn.com/problems/trapping-rain-water/) | 数组 |
| [94. 二叉树的中序遍历](https://github.com/xwchris/Leetcode/tree/master/94.%20%E4%BA%8C%E5%8F%89%E6%A0%91%E7%9A%84%E4%B8%AD%E5%BA%8F%E9%81%8D%E5%8E%86) | Medium | [传送门](https://leetcode-cn.com/problems/binary-tree-inorder-traversal/) | 二叉树 |
| [102. 二叉树的层次遍历](https://github.com/xwchris/Leetcode/tree/master/102.%20%E4%BA%8C%E5%8F%89%E6%A0%91%E7%9A%84%E5%B1%82%E6%AC%A1%E9%81%8D%E5%8E%86) | Medium | [传送门](https://leetcode-cn.com/problems/binary-tree-level-order-traversal/) | 二叉树 |
| [144. 二叉树的前序遍历](https://github.com/xwchris/Leetcode/tree/master/144.%20%E4%BA%8C%E5%8F%89%E6%A0%91%E7%9A%84%E5%89%8D%E5%BA%8F%E9%81%8D%E5%8E%86) | Medium | [传送门](https://leetcode-cn.com/problems/binary-tree-preorder-traversal/) | 二叉树 |
| [393. UTF-8编码验证](https://github.com/xwchris/Leetcode/tree/master/393.%20UTF-8%E7%BC%96%E7%A0%81%E9%AA%8C%E8%AF%81) | Medium | [传送门](https://leetcode-cn.com/problems/utf-8-validation/) | 二进制 |
| [695. 岛屿的最大面积](https://github.com/xwchris/Leetcode/tree/master/695.%20%E5%B2%9B%E5%B1%BF%E7%9A%84%E6%9C%80%E5%A4%A7%E9%9D%A2%E7%A7%AF) | Medium | [传送门](https://leetcode-cn.com/problems/max-area-of-island/) | 数组、图 |