// input: some string
// output: that string with all vowels removed
pub fn disemvowel(s: &str) -> String {
	let mut s = s.to_string();
	s.retain(|c| !"AEIOUaeiou".contains(c));
	s
}