Created
September 21, 2018 08:20
-
-
Save huozhong-in/21e625f303e5f32456833c1dc260815c to your computer and use it in GitHub Desktop.
reverse a string
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' '.join(map(lambda x: x[::-1], 'I have a dream'.split(' '))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment