Rust SolutionsRust Solutions
🧑🚀
A Human Message
Week 4, 2026
All SolutionsRust minimal solution | [email protected] | Rust Solutions
fn main() {
const BITS: &str = "00100010010010000110010101101100011011000110111100100000011001100111001001101111011011010010000001110100011010000110010100100000011000110110100001101001011011000110010001110010011001010110111000100000011011110110011000100000011100000110110001100001011011100110010101110100001000000100010101100001011100100111010001101000001011100010001000100000001011010010000001010110011011110111100101100001011001110110010101110010001000000011000100100000001001100010000000110010001011000010000000110001001110010011011100110111";
let mut out = String::new();
for i in (0..BITS.len()).step_by(8) {
let byte = u8::from_str_radix(&BITS[i..i + 8], 2).unwrap();
out.push(byte as char);
}
println!("{}", out);
}