Your question is Reverse a String Manually. 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.
Even Financial Marketplace displays lender offer labels as strings. Write a function that returns a label with its characters in reverse order without using built-in reversal operations.
Do not use slicing with a negative step, reversed(), or list reverse(). You may use ''.join() only to convert a manually populated character list back into a string.
text, a Python string.text in reverse order.Use a two-pointer approach: one pointer starts at the beginning of a character array and the other starts at the end. Swap their characters until the pointers meet.
def reverse_offer_label(text):