https://github.com/leo6033/algorithms
https://github.com/leo6033/algorithms
algorithms-and-data-structures cpp java python
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/leo6033/algorithms
- Owner: leo6033
- Created: 2019-02-21T05:12:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-03-15T16:09:26.000Z (over 5 years ago)
- Last Synced: 2025-01-05T16:34:52.278Z (11 months ago)
- Topics: algorithms-and-data-structures, cpp, java, python
- Language: Python
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms
Algorithms & Data structures in C++、 JAVA and Python
(If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime)
## practice
Leetcode
| 序号 | 题目 | 代码 |
| :--: | :----------------------------------------------------------: | :----------------------------------------------------------: |
| 1 | [两数之和]() | [Python](practice\Leetcode\1.两数之和\code.py) , [C++](practice\Leetcode\1.两数之和\code.cpp) |
| 2 | [两数相加]() | [Python](practice\Leetcode\2.两数相加\code.py), [C++](practice\Leetcode\2.两数相加\code.cpp) |
| 3 | [无重复字符的最长子串]() | [Python](practice\Leetcode\3.无重复字符的最长子串\code.py), [C++](practice\Leetcode\3.无重复字符的最长子串\code.cpp) |
| 88 | [合并两个有序数组]() | [Python](practice\Leetcode\88.合并两个有序数组\code.py)|
| 136 | [只出现一次的数字]() | [Python](practice\Leetcode\136.只出现一次的数字\code.py)|
| 169 | [多数元素]() | [Python](practice\Leetcode\169.多数元素\code.py)|
| 240 | [搜索二维矩阵 II]() | [Python](practice\Leetcode\240.搜索二维矩阵 II\code.py)|
| 887 | [鸡蛋掉落]() | [Python](practice\Leetcode\887.鸡蛋掉落\code.py)|