I don't know if it is against the rules, my approach was a recursive function.
I am at the "write a function that reverses a string without creating a new string" question and this is the answer on the site: def reverse(str): left_ptr = 0 right_ptr = len(str) - 1 middle = len(str) / 2 while…
I don't know if it is against the rules, my approach was a recursive function.
I am at the "write a function that reverses a string without creating a new string" question and this is the answer on the site: def reverse(str): left_ptr = 0 right_ptr = len(str) - 1 middle = len(str) / 2 while…