https://github.com/chopinsky/algo-problems
This repository contains a collection of algorithm problems.
https://github.com/chopinsky/algo-problems
Last synced: 11 months ago
JSON representation
This repository contains a collection of algorithm problems.
- Host: GitHub
- URL: https://github.com/chopinsky/algo-problems
- Owner: Chopinsky
- Created: 2018-08-28T02:03:55.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-06-09T15:53:25.000Z (about 2 years ago)
- Last Synced: 2024-06-11T19:06:15.616Z (about 2 years ago)
- Language: Python
- Size: 3.63 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: Support/Set.go
Awesome Lists containing this project
README
# LeetCode Problems
This repository contains a collection of solutions to some interesting `LeetCode` problems. The solutions are written in `Go` and you can check the results by running the corresponding problem.
## Run Go Problems
At the project root, run the following command
```go
$ go run . -n=
```
## How to run a JavaScript specific problem
Download the repository and enter the folder, then at your command-line tool execute:
```node
$ node ./js-problems/main.js $1 $2
```
- The `$1` parameter is optional, if specified, it will run the solution with the same name of the problem folder. By default we will run the "FreqStack" solution.
- The `$2` parameter is optional, it can be `-d` or `--debug`, if specified, it will run the debug mode for the solution.