摘要: JZ58 左旋转字符串 /* 模拟 */ public class JZ58_1 { public static String LeftRotateString(String str, int n) { if (str.length() == 0) return ""; n %= str.lengt 阅读全文
posted @ 2023-09-25 15:41 Vivid-BinGo 阅读(1) 评论(0) 推荐(0) 编辑
摘要: JZ66 构建乘积数组 /* 暴力 */ public class JZ66_1 { public static int[] multiply(int[] A) { int[] res = new int[A.length]; Arrays.fill(res, 1); for (int i = 0; 阅读全文
posted @ 2023-09-25 14:37 Vivid-BinGo 阅读(2) 评论(0) 推荐(0) 编辑