Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
findall solution in Clear category for Secret Message by gyahun_dash
import re
def find_message(text):
return ''.join(re.findall(r'[A-Z]', text))
Sept. 3, 2014
Comments: