LeetCode 344. 反转字符串

请编写一个函数,其功能是将输入的字符串反转过来。

示例:

输入:s = “hello”
返回:”olleh”

swift code

class Solution {
    func reverseString(_ s: String) -> String {
        return String(s.characters.reversed())
    }
}

你可能感兴趣的:(LeetCode 344. 反转字符串)