LeetCode 1814. Count Nice Pairs in an Array
You are given an array nums
that consists of non-negative integers. Let us define rev(x)
as the reverse of the non-negative integer x
. For example, rev(123) = 321
, and rev(120) = 21
. A pair of indices (i, j)
is nice if it satisfies all of the following conditions:
0 <= i < j < nums.length
nums[i] + rev(nums[j]) == nums[j] + rev(nums[i])
Return the number of nice pairs of indices. Since that number can be too large, return it modulo 109 + 7
.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 10^5
0 <= nums[i] <= 10^9
Solution
PreviousLeetCode 1813. Sentence Similarity IIINextLeetCode 1815. Maximum Number of Groups Getting Fresh Donuts
Last updated