https://github.com/pplmx/algo-go
https://github.com/pplmx/algo-go
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pplmx/algo-go
- Owner: pplmx
- Created: 2025-08-12T13:06:51.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-09-19T09:55:59.000Z (10 months ago)
- Last Synced: 2025-09-19T11:47:14.600Z (10 months ago)
- Language: Go
- Size: 18.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# algo-go
Algorithm practice in Go.
## How to Run Tests
You can use the `make` command to run all tests:
```shell
make test
```
## How to Add a New Problem
```bash
# Usage:
# go run scripts/new_problem.go
# Example:
go run scripts/new_problem.go 2 add_two_numbers
```
## Directory Structure
- `leetcode/`: LeetCode problem solutions
- `tests/leetcode/`: Corresponding unit tests for LeetCode problems