You are viewing a single comment's thread. Return to all comments →
def marsExploration(s): og_s = "SOS" * (len(s)//3) return len([(m, n) for m, n in zip(s, og_s) if m != n]) s = input() res = marsExploration(s) print(res)
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 →
for Python3 Platform