摘要:
class Solution { public boolean isUnique(String astr) { Set<Character> set = new HashSet<>(); for (int j = 0; j < astr.length(); j++) { if (!set.add(a 阅读全文
posted @ 2021-08-04 13:32
行之星
阅读(236)
评论(0)
推荐(0)
摘要:
package com.ll.cst; public class index { public static void main(String[] args) {// System.out.println(500%1000000007); Solution so = new Solution(); 阅读全文
posted @ 2021-08-04 13:10
行之星
阅读(193)
评论(0)
推荐(0)
摘要:
package com.ll.cst; import java.math.BigInteger; /** * 测试用例: * 功能测试(输入3,5,10) * 边界值测试(输入0,1,2) * 性能测试(输入较大的数40,50,100) * @author 30140 * */public clas 阅读全文
posted @ 2021-08-04 12:44
行之星
阅读(248)
评论(0)
推荐(0)
浙公网安备 33010602011771号