Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 549 Bytes

File metadata and controls

26 lines (19 loc) · 549 Bytes

codingchallenges

Solutions to Coding Challenges implemented in Rust.

Crates

Crate Description
wc Unix wc tool — counts lines, words, and bytes in files
json-parser JSON parser and validator
compression Huffman encoding compression tool

Usage

# Build all
make build

# Test all
make test

# Run a specific tool
make run-wc ARGS="path/to/file.txt"
make run-json-parser ARGS="path/to/file.json"
make run-compression ARGS="path/to/file.txt"