File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -15,3 +15,7 @@ All notable changes to the "leetcode" extension will be documented in this file.
15
15
更新了过滤题目,只显示算法题,而数据库,shell什么的都不显示了。
16
16
# 1.0.11
17
17
更新了 imports.py itertools
18
+ # 1.0.12
19
+ 更新了 imports.py math heapq
20
+ # 1.0.13
21
+ 更新了 imports.py math bisect
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.11 " ,
5
+ "version" : " 1.0.13 " ,
6
6
"author" : " KuiyuanFu" ,
7
7
"publisher" : " KuiyuanFu" ,
8
8
"license" : " MIT" ,
Original file line number Diff line number Diff line change 3
3
import sys
4
4
import os
5
5
from itertools import *
6
+ from math import *
7
+ from heapq import *
8
+ from bisect import *
6
9
7
10
rootPath = os .path .dirname (sys .path [0 ])
8
11
os .chdir (rootPath )
You can’t perform that action at this time.
0 commit comments