// Repeat the given string exactly n times fn repeat_str(src: &str, count: usize) -> String { vec![src; count].join("") }