Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 927f4d9

Browse files
committed
1.0.13 更新了 imports.py math bisect
1 parent 4b0f715 commit 927f4d9

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@ All notable changes to the "leetcode" extension will be documented in this file.
1515
更新了过滤题目,只显示算法题,而数据库,shell什么的都不显示了。
1616
# 1.0.11
1717
更新了 imports.py itertools
18+
# 1.0.12
19+
更新了 imports.py math heapq
20+
# 1.0.13
21+
更新了 imports.py math bisect

package.json

Lines changed: 1 addition & 1 deletion
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.11",
5+
"version": "1.0.13",
66
"author": "KuiyuanFu",
77
"publisher": "KuiyuanFu",
88
"license": "MIT",

resources/imports.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import sys
44
import os
55
from itertools import *
6+
from math import *
7+
from heapq import *
8+
from bisect import *
69

710
rootPath = os.path.dirname(sys.path[0])
811
os.chdir(rootPath)

0 commit comments

Comments
 (0)