pub fn deduplicate_consecutive(s: &str) -> String
Remove duplicate consecutive characters from a string.
E.g., "aabbbc" → "abc".
"aabbbc"
"abc"