import java.util.*; public class Solution { /** * 反转字符串 * @param str string字符串 * @return string字符串 */ // write code here public String solve(String str) { // write code here int len = str.length(); StringBuilder sb = new StringBuilder(); ...