Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 284 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 284 Bytes

Reverse it

Suppose you're given an array of strings, s. Write a function using python to take each string in the array and reverse it. For example, given the following:

s = [rac, talf, tot, tob]

Your function should return:

s = [car, flat, tot, bot]