532. K-diff Pairs in an Array
package LeetCode_532 /** * 532. K-diff Pairs in an Array * https://leetcode.com/problems/k-diff-pairs-in-an-array/description/ * * Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. * Here a k-diff pair is defined as an integer pair (i, j), where i and j are both numbers in the array and their absolute difference is k. * Example 1: Input: [3, 1, 4, 1, 5], k = 2 Output: 2 Explanation: There are two 2-diff pairs in the array, (1, 3) and (3, 5). Although we have two 1s in the input, we should only return the number of unique pairs. Note: The pairs (i, j) and (j, i) count as the same pair. The length of the array won't exceed 10,000. All the integers in the given input belong to the range: [-1e7, 1e7]. * */ class Solution { fun findPairs(nums: IntArray, k: Int): Int { var res = 0 val map = HashMap<Int, Int>() for (num in nums) { map.put(num, map.getOrDefault(num, 0) + 1) } //如果k为0且该数字出现的次数大于1,则结果 res 自增1; //如果k不为0,且用当前数字加上k后得到的新数字也在数组中存在,则结果 res 自增1 for (item in map) { if (k == 0 && item.value > 1) { res++ } if (k > 0 && map.containsKey(item.key + k)) { res++ } } return res } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
2019-05-26 ubuntu如何实现双屏显示(转)