pub fn interleave_char(s: &str, sep: char) -> String
Insert a separator between characters in a string.
E.g., interleave("abc", '-') → "a-b-c".
interleave("abc", '-')
"a-b-c"