摘要: def reverseString(self, s: List[str]) → None: """ Do not return anything, modify s in-place instead. """ n=len(s) left,right=0,n-1 while left<right: t 阅读全文
posted @ 2021-04-21 16:42 谁动了我的奶盖 阅读(40) 评论(0) 推荐(0) 编辑