Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zcong1993/leetcode-tool
一个让你更方便刷题的工具
https://github.com/zcong1993/leetcode-tool
leetcode leetcode-tool
Last synced: about 23 hours ago
JSON representation
一个让你更方便刷题的工具
- Host: GitHub
- URL: https://github.com/zcong1993/leetcode-tool
- Owner: zcong1993
- License: mit
- Created: 2020-11-16T11:21:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-18T15:59:22.000Z (almost 3 years ago)
- Last Synced: 2024-06-19T04:22:04.067Z (5 months ago)
- Topics: leetcode, leetcode-tool
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 15
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# leetcode-tool ![goreleaser](https://github.com/zcong1993/leetcode-tool/workflows/goreleaser/badge.svg)
> 一个让你更方便刷题的工具
## Install
```bash
# homebrew
$ brew tap zcong1993/homebrew-tap
$ brew install zcong1993/homebrew-tap/leetcode-tool# 直接安装
curl -fsSL https://bina.egoist.sh/zcong1993/leetcode-tool | sh# show help
$ leetcode-tool help
```## 配置
可以在项目根目录创建 `.leetcode.json` 配置文件.
```js
{
"lang": "go", // 项目全局语言, 配置后 new 命令 --lang 参数可省略, 目前支持 go ts js py3 java
"cookie": "xxx"
}
```## 使用说明
[https://blog.cong.moe/post/2020-11-30-leetcode_tool](https://blog.cong.moe/post/2020-11-30-leetcode_tool)
## 支持语言
- Golang go
- Typescript ts
- Javascript js
- Python3 py3
- Java java## 主要功能
### 新建题目代码
`leetcode-tool new [] `
number 为网页上显示的题目序号, 例如: `leetcode-tool new 1` 创建第一题的代码.
此命令会创建一个文件夹和三个文件, 分别是: 代码文件, 测试文件, 题目描述文件.
题目信息从 leetcode 拉取, 并生成一些元信息供更新命令分类更新题目完成状态.
### 查看题目信息
`leetcode-tool meta `
展示某道题目一些信息.
### 更新题目状态
`leetcode-tool update`
根据已完成题目类别更新 `toc` 文件夹下的算法分类状态.
### 更新 leetcode 分类
`leetcode-tool tags`
从 leetcode 网站拉取最新分类, 并创建 `toc` 对应文件, 一般不需要运行.
### 重置项目
假如想要重新从零开始, 或者你的项目是基于别人项目 fork 的, 可以使用如下方式清理已有题解:
```shell
# 1. 删除所有题解文件
rm -rf solve/*
# 2. 重新构建 toc 文件, -f 参数会强制覆盖
leetcode-tool tags -f
# 2.1 假如你还保留了部分题解, 还需要更新下题目状态
leetcode-tool update
```## Workflow
如何刷题?
```bash
# 1. 新建一个题目
$ leetcode-tool new 1
# 2. 写出题解, 和测试代码
...
# 3. 更新 toc 文件
$ leetcode-tool update
# 4. 提交代码
```## 为什么需要这个工具
1. leetcode 网页 IDE 太弱了, 我需要本地解题
1. 网页题解难以沉淀, 例如一道题我希望整理多种解法
1. GitHub 易于分享题解
1. 根据自己需要, 组织题目做专题之类的总结## 模板项目
- Typescript [zcong1993/leetcode-ts-template](https://github.com/zcong1993/leetcode-ts-template)
## 使用此工具的项目
- [zcong1993/algo-go](https://github.com/zcong1993/algo-go)
## 常见问题
### 1. 报错 panic: runtime error: invalid memory address or nil pointer dereference
因为 LeetCode 网站现在某些请求会校验 cookie, 采取的修复方法是请求增加了 cookie, 但是内置 cookie 没法确保长期有效.
所以 `.leetcode.json` 配置文件中支持 cookie 配置, 后续请访问此链接 [https://leetcode-cn.com/api/problems/all](https://leetcode-cn.com/api/problems/all) 拿到 cookie 自行更新配置文件.
## License
MIT © zcong1993