You are viewing a single comment's thread. Return to all comments →
def marsExploration(s): sos_count = len(s)//3 original_sos = sos_count * "SOS" changed_chars = sum(1 for i in range(len(s)) if s[i] != original_sos[i]) return changed_chars
Seems like cookies are disabled on this browser, please enable them to open this website
Mars Exploration
You are viewing a single comment's thread. Return to all comments →