File tree
Expand file treeCollapse file tree3 files changed
+4
-2
lines changed Expand file treeCollapse file tree3 files changed
+4
-2
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -21,3 +21,5 @@ All notable changes to the "leetcode" extension will be documented in this file.
|
21 | 21 | 更新了 imports.py math bisect
|
22 | 22 | # 1.0.14
|
23 | 23 | 更新了 imports.py random
|
| 24 | +# 1.0.15 |
| 25 | +更新了 imports.py random fix |
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.14", |
| 5 | +"version": "1.0.15", |
6 | 6 | "author": "KuiyuanFu",
|
7 | 7 | "publisher": "KuiyuanFu",
|
8 | 8 | "license": "MIT",
|
|
Original file line number | Diff line number | Diff line change |
---|
|
6 | 6 | from math import *
|
7 | 7 | from heapq import *
|
8 | 8 | from bisect import *
|
9 |
| -from random import * |
| 9 | +import random |
10 | 10 |
|
11 | 11 | rootPath = os.path.dirname(sys.path[0])
|
12 | 12 | os.chdir(rootPath)
|
|
You can’t perform that action at this time.
0 commit comments