fork download
  1. def search4vowels(phrase:str) -> set:
  2. """Возвращает гласные, найденные в указанной фразе."""
  3. vowels = set('aeiou')
  4. return vowels.intersection(set(phrase))
Success #stdin #stdout 0.03s 9224KB
stdin
Standard input is empty
stdout
Standard output is empty