过年啦
摘要: private int calculateProduct(String str) { return Arrays.stream(str.split(",")) .filter(this::checkIsEmpty) .mapToInt(Integer::parseInt) .reduce(1, (a 阅读全文
posted @ 2024-11-25 10:46 一只快乐的柠檬精J 阅读(8) 评论(0) 推荐(0)
摘要: private Map<Integer, Long> calculateCount(String str) { return Arrays.stream(str.split(",")) .filter(this::checkIsEmpty) .mapToInt(Integer::parseInt). 阅读全文
posted @ 2024-11-25 10:41 一只快乐的柠檬精J 阅读(5) 评论(0) 推荐(0)