We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f8237 commit 4b0f715Copy full SHA for 4b0f715
CHANGELOG.md
@@ -13,3 +13,5 @@ All notable changes to the "leetcode" extension will be documented in this file.
13
更新了 imports.py 修改二叉树元素为0时,不生成结点的问题。
14
# 1.0.10
15
更新了过滤题目,只显示算法题,而数据库,shell什么的都不显示了。
16
+# 1.0.11
17
+更新了 imports.py itertools
package.json
@@ -2,7 +2,7 @@
2
"name": "python-leetcode",
3
"displayName": "PythonLeetcode",
4
"description": "Solve LeetCode problems in VS Code",
5
- "version": "1.0.10",
+ "version": "1.0.11",
6
"author": "KuiyuanFu",
7
"publisher": "KuiyuanFu",
8
"license": "MIT",
resources/imports.py
@@ -2,6 +2,7 @@
from collections import *
import sys
import os
+from itertools import *
rootPath = os.path.dirname(sys.path[0])
os.chdir(rootPath)
0 commit comments