Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Secret Message by andriutwich
# migrated from python 2.7
find_message = lambda text: "".join([t for t in text if t == t.upper() and t.isalpha()])
def test_function():
assert find_message("How are you? Eh, ok. Low or Lower? Ohhh.") == "HELLO", "hello"
assert find_message("hello world!") == "", "Nothing"
assert find_message("HELLO WORLD!!!") == "HELLOWORLD", "Capitals"
Jan. 13, 2017