An open API service indexing awesome lists of open source software.

https://github.com/tonysy/leetcode-everyweek

Leetcode exercise records
https://github.com/tonysy/leetcode-everyweek

Last synced: about 2 months ago
JSON representation

Leetcode exercise records

Awesome Lists containing this project

README

        

# leetcode-everyweek
Leetcode exercise records

## 1. Use leetcode-cli to play with leetcode
- Install leetcode-cli from: [leetcode-cli](https://github.com/skygragon/leetcode-cli.git)
### Usages
- Check version: `leetcode version -v`
- Show submission status: `leetcode stat -g`
- Show question: `leetcode show question_id`
- Show question: `leetcode show question_id -gx -l python`
- Generate python pre-script for write
- `-gx` means write the problem into py file
- `-l` assgin language.
- Test with a case:
- `leetcode test ./1.two-sum.py -t '[2,7,11,15]\n9'`
- Submit a solution:
- `leetcode submit ./1.two-sum.py`
- Get latest submission:
- `leetcode submission question_id`
### Group Links
- Yiliu Chenran [[Project]](https://github.com/CRYL/leetcode-everyweek)[[Leetcode]](https://leetcode.com/cryl/)
- Kai Zhang [[Project]](https://github.com/nkai141119/leetcode-everyweek)[[Leetcode]](https://leetcode.com/nkai/)
- Yifeng Wang [[Project]]()[[Leetcode]](https://leetcode.com/yifengw/)
- Songyang Zhang [[Project]]()[[Leetcode]](https://leetcode.com/zsytony/)
## 2. Leetcode week schedule

#### 2018
----------------
|Week-1 | Problems and Solution | Knowledge | Language|
|:----:| ------ |:------:|:---------:|
|07/25--07/31|724.Find Pivot Index[[Problem]](https://leetcode.com/problems/find-pivot-index/description/)[[Solution]]()
747.Largest Number At Least Twice of Others[[Problem]](https://leetcode.com/problems/largest-number-at-least-twice-of-others/description/)[[Solution]]()
54.Spiral Matrix[[Problem]](https://leetcode.com/problems/spiral-matrix/description/) [[Solution]](./Python3/54.spiral-matrix.python3.md)
66.Plus One[[Problem]](https://leetcode.com/problems/plus-one/description/)[[Solution]](./Python3/66.plus-one.python3.md)
498.Diagonal Traverse[[Problem]](https://leetcode.com/problems/diagonal-traverse/description/) [[Solution]]()
118.Pascal's Triangle[[Problem]](https://leetcode.com/problems/pascals-triangle/description/)[[Solution]](./Python3/118.pascals-triangle.python3.md)
67.Add Binary[[Problem]](https://leetcode.com/problems/add-binary)[[Solution]](./Python3/67.add-binary.python3.md)
28.Implement-strStr()[[Problem]](https://leetcode.com/problems/implement-strstr)[[Solution]](./Python3/28.implement-strstr.python3.md)
14.Longest Common Prefix[[Problem]](https://leetcode.com/problems/longest-common-prefix)[[Solution]](./Python3/14.longest-common-prefix.python3.md) |[Array and String](https://leetcode.com/explore/learn/card/array-and-string/) |Python3|
|08/01--08/07|344. Reverse String[[Problem]](https://leetcode.com/problems/reverse-string/description/)[[Solution]](./Python3/344.reverse-string.python3.md)
561.Array Partition I[[Problem]](https://leetcode.com/problems/array-partition-i)[[Solution]](./Python3/561.array-partition-i.python3.md)
167.Two Sum II-Input array is sorted[[Problem]](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted/) [[Solution]](./Python3/167.two-sum-ii-input-array-is-sorted.python3.md)
27.Remove Element[[Problem]](https://leetcode.com/problems/remove-element)[[Solution]](./Python3/27.remove-element.python3.md)
485.Max Consecutive Ones[[Problem]](https://leetcode.com/problems/max-consecutive-ones) [[Solution]]()
209.Minimum Size Subarray Sum[[Problem]](https://leetcode.com/problems/minimum-size-subarray-sum)[[Solution]](./Python3/)
189.Rotate Array[[Problem]](https://leetcode.com/problems/rotate-array)[[Solution]](./Python3/)
119.Pascal's Triangle II[[Problem]](https://leetcode.com/problems/pascals-triangle-ii)[[Solution]](./Python3/)
151.Reverse Words in a String[[Problem]](https://leetcode.com/problems/reverse-words-in-a-string)[[Solution]](./Python3/) |[Array and String](https://leetcode.com/explore/learn/card/array-and-string/) |Python3|