Your question is Reverse String In Place. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Given a string s, write a function that returns the reversed version of the string. The input is a Python string and the output should also be a string. Solve it using a two-pointer technique rather than relying only on built-in reversing shortcuts.
def reverse_string(s):