MCPcopy Create free account
hub / github.com/Avisikta-Majumdar/HackerRank_Python_Solutions / Mutations.py

File Mutations.py

Mutations.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1def mutate_string(string, position, character):
2 return string[:position]+character + string[(position+1):]
3
4if __name__ == '__main__':

Callers

nothing calls this directly

Calls 1

mutate_stringFunction · 0.85

Tested by

no test coverage detected