There was an error while loading. Please reload this page.
1 parent 3533106 commit a023e31Copy full SHA for a023e31
Mutations/main.py
@@ -0,0 +1,5 @@
1
+def mutate_string(string, position, character):
2
+ string=string[:position]+character+string[position+1:]
3
+
4
+ return string
5
+if __name__ == '__main__':
0 commit comments