
Jay
A polyglot programmer
Hi, I'm Jay
Hi, I'm Jay
1 min read
loading...
We're a place where coders share, stay up-to-date and grow their careers.
A polyglot programmer
Recent comments
Daily Challenge #280 - Driving School
fn cost(mins: u8) -> u8 { if mins < 5 { ret...
Daily Challenge #191 - Alphabetical Addition
Rust solution fn add_letters(chars: Vec<char>) ->...
Daily Challenge #193 - What's the Real Floor?
Rust pattern matching fn get_real_floor(n: i32) -> i32...
Daily Challenge #194 - Spread Number
Rust fn spread(n: u32) -> Vec<u32> { (1..n +...
Daily Challenge #189 - Convert Number into Reversed Array
Rust one liner: fn convertNtA(num: i32) -> Vec<u32&...
Daily Challenge #190 - capitalizeFirstLast
Rust Solution: fn capital_first_last(sentence: &str) ...
Daily Challenge #54 - What century is it?
Rust: fn century_name(year: u32) -> String { let c...
Daily Challenge #49 - Dollars and Cents
Rust Function: fn format_dollar(price: f32) -> String ...