ExercĂcio: ROT13
Neste exemplo, vocĂȘ implementarĂĄ o clĂĄssico cifra "ROT13". Copie este cĂłdigo para o playground e implemente as partes que faltam. Apenas rotacione caracteres alfabĂ©ticos ASCII para garantir que o resultado ainda seja UTF-8 vĂĄlido.
use std::io::Read; struct RotDecoder<R: Read> { input: R, rot: u8, } // Implemente o trait `Read` para `RotDecoder`. fn main() { let mut rot = RotDecoder { input: "Gb trg gb gur bgure fvqr!".as_bytes(), rot: 13 }; let mut result = String::new(); rot.read_to_string(&mut result).unwrap(); println!("{}", result); } #[cfg(test)] mod test { use super::*; #[test] fn joke() { let mut rot = RotDecoder { input: "Gb trg gb gur bgure fvqr!".as_bytes(), rot: 13 }; let mut result = String::new(); rot.read_to_string(&mut result).unwrap(); assert_eq!(&result, "To get to the other side!"); } #[test] fn binary() { let input: Vec<u8> = (0..=255u8).collect(); let mut rot = RotDecoder::<&[u8]> { input: input.as_ref(), rot: 13 }; let mut buf = [0u8; 256]; assert_eq!(rot.read(&mut buf).unwrap(), 256); for i in 0..=255 { if input[i] != buf[i] { assert!(input[i].is_ascii_alphabetic()); assert!(buf[i].is_ascii_alphabetic()); } } } }
O que acontece se vocĂȘ encadear duas instĂąncias de RotDecoder
, cada uma rotacionando 13 caracteres?