给定一个string iniString,请返回一个string,为该字符串翻转后的结果。要求不使用额外数据结构和储存空间,可以使用单个过程变量,保证字符串的长度小于等于5000。 测试样例: "This is nowcoder" 返回:"redocwon si sihT"
加载中...
import java.util.*; public class Reverse { public String reverseString(String iniString) { // write code here } }
class Reverse { public: string reverseString(string iniString) { // write code here } };
# -*- coding:utf-8 -*- class Reverse: def reverseString(self, iniString): # write code here
class Reverse { public string reverseString(string iniString) { // write code here } }