File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ All notable changes to the "leetcode" extension will be documented in this file.
2121
更新了 imports.py math bisect
2222
# 1.0.14
2323
更新了 imports.py random
24+
# 1.0.15
25+
更新了 imports.py random fix
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python-leetcode",
33
"displayName": "PythonLeetcode",
44
"description": "Solve LeetCode problems in VS Code",
5-
"version": "1.0.14",
5+
"version": "1.0.15",
66
"author": "KuiyuanFu",
77
"publisher": "KuiyuanFu",
88
"license": "MIT",
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from math import *
77
from heapq import *
88
from bisect import *
9-
from random import *
9+
import random
1010

1111
rootPath = os.path.dirname(sys.path[0])
1212
os.chdir(rootPath)

0 commit comments

Comments
 (0)