Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Secret Message by ksc38317
def find_message(text: str) -> str:
return ''.join([c for c in text if c.isupper()])
June 24, 2019