https://github.com/gedex/protohackers
https://github.com/gedex/protohackers
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gedex/protohackers
- Owner: gedex
- Created: 2025-02-22T04:06:23.000Z (over 1 year ago)
- Default Branch: trunk
- Last Pushed: 2025-04-06T10:01:24.000Z (over 1 year ago)
- Last Synced: 2026-03-29T16:13:55.533Z (4 months ago)
- Language: Go
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Solutions for protohackers.com
==============================
Solution for protohackers.com in various programming languages.
### Build binaries
Build binaris (only for compiled language) for the server.
```
make
```
### Run test
Test the server.
```
make test PROBLEM=0 SERVER=go SERVER_ARGS='127.0.0.1:9999'
```
where `PROBLEM` is protohackers.com problem number, `SERVER` is the
programming language the server is written with, and `SERVER_ARGS` is args to
run the server.
### Run the server
```
make run PROBLEM=0 SERVER=zig SERVER_ARGS='127.0.0.1:9999'
```