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 927f4d9 commit 6011959Copy full SHA for 6011959
CHANGELOG.md
@@ -19,3 +19,5 @@ All notable changes to the "leetcode" extension will be documented in this file.
19
更新了 imports.py math heapq
20
# 1.0.13
21
更新了 imports.py math bisect
22
+# 1.0.14
23
+更新了 imports.py random
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.13",
+ "version": "1.0.14",
6
"author": "KuiyuanFu",
7
"publisher": "KuiyuanFu",
8
"license": "MIT",
resources/imports.py
@@ -6,6 +6,7 @@
from math import *
from heapq import *
from bisect import *
9
+from random import *
10
11
rootPath = os.path.dirname(sys.path[0])
12
os.chdir(rootPath)
0 commit comments