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.
- Host: GitHub
- URL: https://github.com/montycoder0701/rust-coding
- Owner: MontyCoder0701
- Created: 2022-07-27T06:47:57.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-09T03:58:59.000Z (about 3 years ago)
- Last Synced: 2023-04-27T05:12:19.256Z (over 2 years ago)
- Topics: algorithm, rust
- Language: Rust
- Homepage:
- Size: 35.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Programming Practice

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
```