File tree
Expand file treeCollapse file tree3 files changed
+4
-1
lines changed Expand file treeCollapse file tree3 files changed
+4
-1
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -13,3 +13,5 @@ All notable changes to the "leetcode" extension will be documented in this file.
|
13 | 13 | 更新了 imports.py 修改二叉树元素为0时,不生成结点的问题。
|
14 | 14 | # 1.0.10
|
15 | 15 | 更新了过滤题目,只显示算法题,而数据库,shell什么的都不显示了。
|
| 16 | +# 1.0.11 |
| 17 | +更新了 imports.py itertools |
Original file line number | Diff line number | Diff line change |
---|
|
2 | 2 | "name": "python-leetcode",
|
3 | 3 | "displayName": "PythonLeetcode",
|
4 | 4 | "description": "Solve LeetCode problems in VS Code",
|
5 |
| -"version": "1.0.10", |
| 5 | +"version": "1.0.11", |
6 | 6 | "author": "KuiyuanFu",
|
7 | 7 | "publisher": "KuiyuanFu",
|
8 | 8 | "license": "MIT",
|
|
Original file line number | Diff line number | Diff line change |
---|
|
2 | 2 | from collections import *
|
3 | 3 | import sys
|
4 | 4 | import os
|
| 5 | +from itertools import * |
5 | 6 |
|
6 | 7 | rootPath = os.path.dirname(sys.path[0])
|
7 | 8 | os.chdir(rootPath)
|
|
You can’t perform that action at this time.
0 commit comments