1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}

mod repunit {
    pub fn convert(repnum: usize) -> usize {
        let rep1: String = "1".to_string();
        let rep2 = rep1.repeat(repnum);
        let repunit: usize = rep2.to_string().parse().unwrap();
        return repunit;
    }
    pub fn restore(repunit: usize) -> usize {
        let rep3: String = repunit.to_string();
        let rep4: &str = &rep3;
        let repnum: usize = rep4.match_indices("1").count();
        return repnum;
    }
}