You are viewing a single comment's thread. Return to all comments →
Another Solution
def mutate_string(s, i, c): s_list = list(s) s_list[i] = c return "".join(s_list)
Seems like cookies are disabled on this browser, please enable them to open this website
Mutations
You are viewing a single comment's thread. Return to all comments →
Another Solution