We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53161ee commit e75c072Copy full SHA for e75c072
Mutations.py
@@ -0,0 +1,3 @@
1
+def mutate_string(string, position, character):
2
+ string = string[:position] + character + string[position+1:]
3
+ return string
0 commit comments