Current Program Descriptions
- first_prog.rs: My first program and my introduction to Rust!
- fib.rs: A fibonacci implementation
- taylor.rs: An approximation of sin(x) with taylor series
- bsort.rs: The Bubble Sort algorthm
- secret_message.rs: Converted from Python and C, this program can encrypt and decrypt messages (super insecurely)
- rects.rs: A very simple example that helped me learn structures and implementations
- deriv.rs: Derivatives of sample functions
- rps.rs: Rock, Paper, Scissors
- pi.rs: Approximate pi (via Nilakantha Series)
- quadvert.rs: Find the vertex of a given quadratic
Unfinished Programs
- advanced.rs: A file showcasing my (nonexistant) knowledge of some more advanced Rust stuff
- products.rs: A Rust implementation of Python's
itertools.product
Miscellaneous Programs
- main.rs: Entrypoint
- utils.rs: A file containing utilities for all the small programs I've done