All ChallengesLoading...
Not Solved

Insert string in the middle

Write a function that takes two strings, a base string and an insert string, and returns the base string with the insert string added at its midpoint.
Intermediate
sample input: "hello world", " Python" 
sample output: hello Python world
Loading...
Test Output: