Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simply joining uppercases solution in Clear category for Secret Message by new_hoschi
def find_message(text: str) -> str:
return "".join([j for j in text if j.isupper()])
March 27, 2020
Comments: