#Write a function that reverses a string. The input string is given as an array #of characters. You can use Python list to create the array of characters.
Method 1: unique-values, solution based on dict comprehension Method 2: non-unique values Method 3: type and order preserved I ran some tests, and method 1 is the one that provides the best average ...