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