Write the function remove_vowel
that take a string and returns another string where the vowels are removed. Any extra white-spaces as a result of vowel removal should be also removed.
remove_vowel('In three words I can sum up everything') -> 'n thr wrds cn sm p vrythng'