Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by denys.contant
def find_message(text: str) -> str:
return "".join(char for char in text if char.isupper())
Oct. 5, 2018
Comments: