Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by OrginalS
from string import ascii_uppercase
def find_message(text):
res = []
for i in text:
if i in ascii_uppercase:
res += i
return "".join(res)
Sept. 3, 2019
Comments: