Hacker News new | ask | show | jobs
by teddyh 1223 days ago
Python:

  >>> phrase = "Fjord zoologists quip jovially, waxing lyrical about xanthic lutrines"
  >>> import string
  >>> set(string.ascii_lowercase) - set(phrase.lower())
  {'k', 'm'}
1 comments

Concise!