Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_secret_message solution in Uncategorized category for Secret Message by Jon_Red
def find_message(t:str)->str:
'''Find a secret message'''
return''.join([a for a in t if a.isupper()])
April 24, 2020