public class Solution {
/**
* 反转字符串
* @param str string字符串
* @return string字符串
*/
public static String solve (String str) {
int len=str.length();
if(len==0||len==1){
return str;
}
String res=new String();
for(int index=len-1;index>=0;index--){
res=res+str.charAt(index);
}
return res;
}
}