LeetCode344 一行代码解决

LeetCode344 一行代码解决

题目要求:
Write a function that takes a string as input and returns the string reversed.
Example:
Given s = “hello”, return “olleh”.

package com.syy.leetcode344;

public class LeetCode_new {
    public String reverseString(String s) {
        return new StringBuffer(s).reverse().toString();
    }
}

你可能感兴趣的:(leetcode)