An open API service indexing awesome lists of open source software.

https://github.com/montycoder0701/rust-coding

Improving my Rust skills.
https://github.com/montycoder0701/rust-coding

algorithm rust

Last synced: 4 months ago
JSON representation

Improving my Rust skills.

Awesome Lists containing this project

README

          

# Programming Practice

![Rust](https://img.shields.io/badge/rust-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)

Compile the rust file with the command below:

```sh
rustc [file name].rs
```

Run the compiled file with the command below:

```sh
./[file name]
```

## Testing Algorithms

Move to the algorithm folder:

```sh
cd algorithm
```

Test all algorithms at once:

```sh
cargo test
```