https://github.com/choewy/algorithm
Algorithm
https://github.com/choewy/algorithm
leetcode leetcode-python3 leetcode-typescript
Last synced: about 18 hours ago
JSON representation
Algorithm
- Host: GitHub
- URL: https://github.com/choewy/algorithm
- Owner: choewy
- Created: 2023-08-27T12:40:52.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T07:36:09.000Z (over 2 years ago)
- Last Synced: 2025-01-05T05:31:03.978Z (over 1 year ago)
- Topics: leetcode, leetcode-python3, leetcode-typescript
- Language: TypeScript
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithm
## Typescript
```bash
# initialize
npm ci
# run main.ts
npm run ts
# run test/**/*.spec.ts
npm run ts:test
```
## Python(3.10, 3.11)
```bash
# create venv
python3 -m venv .venv
# activate venv
source .venv/bin/activate
# install packages
pip3 install -r requirements.txt
# run main.py
npm run py
# deactivate venv
deactivate
```