تابعی بنویسید که تمام مصوتهای تکی (حروف مصوتی که فقط یک بار در هر کلمه ظاهر میشوند) را از یک جمله حذف کند.
نمونه ورودی و خروجی
remove_single_vowels("Programming is an art.") ➞ Prgrmmng s n rt.
remove_single_vowels("Keep calm and code on.") ➞ Keep clm nd cd n.
remove_single_vowels("The quick brown fox jumps over the lazy dog.") ➞ Th qck brwn fx jmps vr th lzy dg.
نکته: حروف مصوت عبارتند از: a, e, i, o, u (اعم از حروف بزرگ و کوچک).
remove_single_vowels("Programming is an art.") ➞ Prgrmmng s n rt.
remove_single_vowels("Keep calm and code on.") ➞ Keep clm nd cd n.
remove_single_vowels("The quick brown fox jumps over the lazy dog.") ➞ Th qck brwn fx jmps vr th lzy dg.
نظرات