Class Solution
-
- All Implemented Interfaces:
public final class Solution
2843 - Count Symmetric Integers\.
Easy
You are given two positive integers
low
andhigh
.An integer
x
consisting of2 * n
digits is symmetric if the sum of the firstn
digits ofx
is equal to the sum of the lastn
digits ofx
. Numbers with an odd number of digits are never symmetric.Return the number of symmetric integers in the range
[low, high]
.Example 1:
Input: low = 1, high = 100
Output: 9
Explanation: There are 9 symmetric integers between 1 and 100: 11, 22, 33, 44, 55, 66, 77, 88, and 99.
Example 2:
Input: low = 1200, high = 1230
Output: 4
Explanation: There are 4 symmetric integers between 1200 and 1230: 1203, 1212, 1221, and 1230.
Constraints:
<code>1 <= low <= high <= 10<sup>4</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final Integer
countSymmetricIntegers(Integer low, Integer high)
-
-
Method Detail
-
countSymmetricIntegers
final Integer countSymmetricIntegers(Integer low, Integer high)
-
-
-
-