https://leetcode.com/problems/reverse-string/
Python语法糖爆炸时间
class Solution(object): def reverseString(self, s): return s[::-1]