tadm 0.1.1

A collection of algorithms and data structures wrote out while reading The Algorithm Design Manual book
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# just manual: https://github.com/casey/just/#readme

_default:
    @just --list

# Runs clippy on the sources
check:
	cargo clippy --locked -- -D warnings

# Runs unit tests
test:
	cargo test --locked

# Runs the app
run:
    cargo run