Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for Secret Message by rybld2
def find_message(text: str) -> str: return ''.join([t for t in text if t in text.upper() and ord(t) in range(65, 91)])
Dec. 30, 2020
Comments: