You are viewing a single comment's thread. Return to all comments →
# Mars Exploration 🚀 def mars_exploration(s): e = "SOS" * (len(s) // 3) # expected message return sum( [1 for i in range(len(s)) if s[i] != e[i]] )
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 →