An open API service indexing awesome lists of open source software.

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

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
```