leetcode 每日一题 1865. 找出和为指定值的下标对给你两个整数数组 nums1 和 nums2 ,请你实现一个支持下述两类查询的数据结构:输出:解释: FindSumPairs findSumPairs = new FindSumPairs([1, 1, 2, 2, 2, 3], [1, 4, 5, 2, 5, 4]); findSumPairs.count(7); // 返回 8 ; 下标对 (2,2), (3,2), (4,2), (2,4), (3,4), (4,4) 满足 2 + 5 = 7 ,下标对 (5,1), (5,5) 满足 3 + 4