https://github.com/vermavarun/shaksz
All coding and design solutions as package
https://github.com/vermavarun/shaksz
competitive-programming leetcode leetcode-solutions system-design
Last synced: 5 months ago
JSON representation
All coding and design solutions as package
- Host: GitHub
- URL: https://github.com/vermavarun/shaksz
- Owner: vermavarun
- License: gpl-3.0
- Created: 2025-05-08T07:05:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-23T07:47:16.000Z (12 months ago)
- Last Synced: 2025-11-27T20:08:05.820Z (7 months ago)
- Topics: competitive-programming, leetcode, leetcode-solutions, system-design
- Language: Python
- Homepage: https://pypi.org/project/shaksz/
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shaksz
All coding and design solutions as package.
[](https://github.com/vermavarun/shaksz/actions/workflows/build.yaml)
# How to install 💫
⭐ __PIP:__ ⭐
```code
pip install shaksz
```
__GitHub(ssh)__:
```code
pip install git+ssh://git@github.com/vermavarun/shaksz
```
__GitHub(https)__:
```code
pip install git+https://github.com/vermavarun/shaksz.git
```
__GitHub(Token)__:
```code
pip install git+https://@github.com/vermavarun/shaksz.git
```
# Consumption ⚙️
```python
import shaksz
result = shaksz.leetcode.twoSum([2, 7, 11, 15], 9)
print(result)
result = shaksz.codeforces._4a(input_data)
print(result)
```