Skip to content

Commit fd19487

Browse files
added binary, segment tree
1 parent 2a3d3cb commit fd19487

File tree

7 files changed

+1023
-1
lines changed

7 files changed

+1023
-1
lines changed

.vscode/tasks.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "User Snippet Generator",
6+
"type": "shell",
7+
"command": "python",
8+
"args": [
9+
"./vscode_ext_gen.py",
10+
"${file}"
11+
],
12+
"group": "build",
13+
"presentation": {
14+
"reveal": "always"
15+
},
16+
"problemMatcher": []
17+
},
18+
]
19+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#### A beginner friendly Python Snippets auto suggestion pack making you more productive
55
#### Please help to rate this extensions [5 stars](https://marketplace.visualstudio.com/items?itemName=EricSia.pythonsnippets3&ssr=false#review-details) and [share](https://marketplace.visualstudio.com/items?itemName=EricSia.pythonsnippets3) it, [feedback is welcome](CONTRIBUTING.md)
66
#### Tips: uninstall similar python snippet extension first. Then install and Reopen
7+
### Thanks to [Christian Clauss's Python algorithms ](https://github.com/TheAlgorithms/Python) open source community for providing algorithms for our snippets
78
* added with new [python](https://docs.python.org/3/library/stdtypes.html) function, update legacy code
89
* fixes a few unintended typo left by previous developer
910
* use `TAB` to rename field in every method / feature

0 commit comments

Comments
 (0)