Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by Bartlomiej_Szal
def find_message(text):
message = ""
for i in range(len(text)):
if text[i] >= 'A' and text[i] <= 'Z':
message += text[i]
return message
Oct. 8, 2016
Comments: