Leetcode学习(9)——Reverse String

xiaoxiao2021-02-28  114

Write a function that takes a string as input and returns the string reversed.

Example: Given s = "hello", return "olleh". class Solution(object): def reverseString(self, s): return s[::-1]

转载请注明原文地址: https://www.6miu.com/read-49413.html

最新回复(0)