https://github.com/xenv/leetcodenotes
Leetcode的学习笔记
https://github.com/xenv/leetcodenotes
Last synced: 2 days ago
JSON representation
Leetcode的学习笔记
- Host: GitHub
- URL: https://github.com/xenv/leetcodenotes
- Owner: xenv
- Created: 2018-02-14T11:24:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-12T13:34:56.000Z (about 8 years ago)
- Last Synced: 2025-03-01T05:16:42.151Z (over 1 year ago)
- Language: Java
- Size: 42 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Leetcode常见算法问题仓库
-----
做题前需要沟通的点:
1. 输入 :
- 如果是字符串,字符串的范围是什么 (大小写,标点符号,数字,中文)
2. 输出:
- 如果有一个解,用什么方法输出
- 是否一定有解,无解返回什么
- 是否有多个解,如何输出
- 如果有多个解,要以什么顺序
3. 具体要求 :
- 题目中的条件具体如何定义的
- 大小写有无要求,是否敏感
4. 复杂度:
- 数据有多少,最差的时间复杂度要求是什么
- 空间复杂度的要求是什么