Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ice-tong/leetcode
LeetCode
https://github.com/ice-tong/leetcode
leetcode
Last synced: 24 days ago
JSON representation
LeetCode
- Host: GitHub
- URL: https://github.com/ice-tong/leetcode
- Owner: ice-tong
- Created: 2018-07-09T00:14:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-27T14:46:01.000Z (about 6 years ago)
- Last Synced: 2024-10-30T08:23:44.088Z (2 months ago)
- Topics: leetcode
- Language: C++
- Homepage:
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode
### 数组 Array
|序号|题目|代码|
|----|----|----|
|1| [从排序数组中删除重复项](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/description/)|[remove_duplicates.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/remove_duplicates.cpp)|
|2|[买卖股票的最佳时机 II](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/22/)|[max_profit.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/max_profit.cpp)|
|3|[旋转数组](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/23/)|[rotate.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/rotate.cpp)|
|4|[存在重复](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/24/)|[contains_duplicate.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/contains_duplicate.cpp)|
|5|[只出现一次的数字](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/25/)|[single_number.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/single_number.cpp)|
|6|[两个数组的交集 II](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/26/)|[intersect.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/intersect.cpp)|
|7|[加一](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/27/)|[plus_one.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/plus_one.cpp)|
|8|[移动零](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/28/)|[move_zeroes.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/move_zeroes.cpp)|
|9|[两数之和](https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/29/)|[two_sum.cpp](https://github.com/ice-tong/LeetCode/blob/master/Array/two_sum.cpp)|