https://github.com/sdegetaus/hackerrank-challenges-rust
Hackerrank challenges solved with the Rust Programming Language.
https://github.com/sdegetaus/hackerrank-challenges-rust
hackerrank hackerrank-rust hackerrank-solutions rust rust-lang
Last synced: about 2 months ago
JSON representation
Hackerrank challenges solved with the Rust Programming Language.
- Host: GitHub
- URL: https://github.com/sdegetaus/hackerrank-challenges-rust
- Owner: sdegetaus
- Created: 2019-12-16T00:38:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-21T18:09:36.000Z (over 5 years ago)
- Last Synced: 2024-10-30T12:47:11.985Z (7 months ago)
- Topics: hackerrank, hackerrank-rust, hackerrank-solutions, rust, rust-lang
- Language: Rust
- Homepage: https://www.hackerrank.com/challenges
- Size: 47.9 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hackerrank Challenges in Rust
[Hackerrank](https://www.hackerrank.com/) challenges solved with the **Rust Programming Language**.
I am absolutely new to Rust, and I have decided to give it a shot by solving some challenges from Hackerrank. If you are interested and you want to correct or improve my code, please do! :slightly_smiling_face: I would love to see more experienced coders' approaches.
---
#### Instructions
To run (you need [Rust](https://www.rust-lang.org/) and [Cargo](https://crates.io/) installed):
```bash
#!/bin/bash
cargo run
```You need to change the `main` function with the challenge you would like to run:
```rust
// src/main.rsmod challenges;
mod functions;
mod rust_basics;fn main() {
challenges::thirty_days_of_code::day_00::main();
}
```