Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
join and tuple generation solution in Creative category for Secret Message by m_vv
def find_message(text: str) -> str:
"""Find a secret message"""
""" ordinary solution
res = ""
for item in text:
if item.isupper():
res += item
return res
"""
res = "".join((item for item in text if item.isupper()))
return res
if __name__ == '__main__':
print('Example:')
print(find_message("How are you? Eh, ok. Low or Lower? Ohhh."))
#These "asserts" using only for self-checking and not necessary for auto-testing
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"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
April 13, 2019