Your question is Reverse String Without Helpers. 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, return a new string with its characters in reverse order. Do not use built-in string reversal helpers such as slicing with a negative step, reversed(), or language/library methods that directly reverse the string.
def reverse_string(s):