1742. Maximum Number of Balls in a Box
You are working in a ball factory where you have
n
balls numbered fromlowLimit
up tohighLimit
inclusive (i.e.,n == highLimit - lowLimit + 1
), and an infinite number of boxes numbered from1
toinfinity
.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
321
will be put in the box number3 + 2 + 1 = 6
and the ball number10
will be put in the box number1 + 0 = 1
.Given two integers
lowLimit
andhighLimit
, return the number of balls in the box with the most balls.
1 | class Solution { |