Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Looks fine for me solution in Creative category for Secret Message by Monstradamus
def find_message(text: str) -> str:
return ''.join(i for i in text if i.isupper())
July 1, 2019