Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short solution in Creative category for Secret Message by bartosz_lyzwa
def find_message(text):
return ''.join(list(filter(lambda x: x.isupper() ,text)))
Nov. 4, 2017