摘要: 1668. 最大重复子字符串 方法一:暴力枚举 class Solution { public int maxRepeating(String sequence, String word) { char[] ch1 = sequence.toCharArray(); int res = 0; Str 阅读全文
posted @ 2022-11-03 23:10 Eiffelzero 阅读(40) 评论(0) 推荐(0)