A rust based implementation of brute force 3x+1 Based on the Collatz conjecture
docker build -t 3xplus1 .
docker run -v $(pwd):/home/rust_3x_plus1 -it 3xplus1cargo test
# Test w/ code coverage
./unit_test.shcargo build --release# Development
cargo run
# Release
target/release/rust_3x_plus1