-
Notifications
You must be signed in to change notification settings - Fork 14k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Python files | ||
__pycache__/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## LeetCode Animation 管理脚本 anima 使用说明 | ||
|
||
需要使用 Python 3.6+ 版本 | ||
|
||
安装依赖: | ||
|
||
``` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
### 创建新题解 | ||
|
||
生成题解目录框架,以及 Markdown 文件模板。 | ||
|
||
``` | ||
python anima.py new 1 'Two Sum' | ||
``` | ||
|