/hackerrank-challenges-rust

Hackerrank challenges solved with the Rust Programming Language.

Primary LanguageRust

Hackerrank Challenges in Rust

Hackerrank 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! 🙂 I would love to see more experienced coders' approaches.


Instructions

To run (you need Rust and Cargo installed):

#!/bin/bash
cargo run

You need to change the main function with the challenge you would like to run:

// src/main.rs

mod challenges;
mod functions;
mod rust_basics;

fn main() {
    challenges::thirty_days_of_code::day_00::main();
}