You are viewing a single comment's thread. Return to all comments →
Here's my python code:
def marsExploration(s): sos = "SOS" * (len(s)//3) changed = 0 for index, item in enumerate(s): if item != sos[index]: changed += 1 return changed
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 →
Here's my python code: