You are viewing a single comment's thread. Return to all comments →
#python3
def marsExploration(s):` `# Write your code here``` a=len(s)//3 real="SOS"*a c=0 b=list(zip(real,s)) for i in b: if i[0]!=i[1]: c+=1 return
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 →
#python3