Class Solution
-
- All Implemented Interfaces:
public final class Solution1742 - Maximum Number of Balls in a Box\.
Easy
You are working in a ball factory where you have
nballs numbered fromlowLimitup tohighLimitinclusive (i.e.,n == highLimit - lowLimit + 1), and an infinite number of boxes numbered from1toinfinity.Your job at this factory is to put each ball in the box with a number equal to the sum of digits of the ball's number. For example, the ball number
321will be put in the box number3 + 2 + 1 = 6and the ball number10will be put in the box number1 + 0 = 1.Given two integers
lowLimitandhighLimit, return the number of balls in the box with the most balls.Example 1:
Input: lowLimit = 1, highLimit = 10
Output: 2
Explanation:
Box Number: 1 2 3 4 5 6 7 8 9 10 11 ...
Ball Count: 2 1 1 1 1 1 1 1 1 0 0 ...
Box 1 has the most number of balls with 2 balls.
Example 2:
Input: lowLimit = 5, highLimit = 15
Output: 2
Explanation:
Box Number: 1 2 3 4 5 6 7 8 9 10 11 ...
Ball Count: 1 1 1 1 2 2 1 1 1 0 0 ...
Boxes 5 and 6 have the most number of balls with 2 balls in each.
Example 3:
Input: lowLimit = 19, highLimit = 28
Output: 2
Explanation:
Box Number: 1 2 3 4 5 6 7 8 9 10 11 12 ...
Ball Count: 0 1 1 1 1 1 1 1 1 2 0 0 ...
Box 10 has the most number of balls with 2 balls.
Constraints:
<code>1 <= lowLimit <= highLimit <= 10<sup>5</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final IntegercountBalls(Integer lowLimit, Integer highLimit)-
-
Method Detail
-
countBalls
final Integer countBalls(Integer lowLimit, Integer highLimit)
-
-
-
-