摘要: 1742. 盒子中小球的最大数量 class Solution { public int countBalls(int l, int r) { int[] box = new int[50]; int max = 0; for (int i = l; i <= r; i++) { int num = 阅读全文
posted @ 2022-11-23 19:30 Eiffelzero 阅读(33) 评论(0) 推荐(0)