天。为有牺牲多壮志,敢教日月换新

[Swift]LeetCode219. 存在重复元素 II | Contains Duplicate II

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/9745631.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute difference between i and j is at most k.

Example 1:

Input: nums = [1,2,3,1], k = 3
Output: true

Example 2:

Input: nums = [1,0,1,1], k = 1
Output: true

Example 3:

Input: nums = [1,2,3,1,2,3], k = 2
Output: false


给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的绝对值最大为 k

示例 1:

输入: nums = [1,2,3,1], k= 3
输出: true

示例 2:

输入: nums = [1,0,1,1], k=1
输出: true

示例 3:

输入: nums = [1,2,3,1,2,3], k=2
输出: false

复制代码
 1 class Solution {
 2     func containsNearbyDuplicate(_ nums: [Int], _ k: Int) -> Bool {
 3         //判断
 4         if nums == nil || nums.count < 2 || k < 1
 5         {
 6             return false
 7         }
 8         var map:[Int:Int] = [Int:Int]()
 9         for i in 0..<(nums.count)
10         {
11             if map.keys.contains(nums[i])
12             {
13                 var sub:Int = i - map[nums[i]]!
14                 if sub <= k
15                 {
16                     return true
17                 }
18                 else
19                 {
20                     map[nums[i]] = i
21                 }
22             }
23             else
24             {
25                 map[nums[i]] = i
26             }
27         }
28         return false
29     }
30 }
复制代码

32ms

复制代码
 1 class Solution {
 2     func containsNearbyDuplicate(_ nums: [Int], _ k: Int) -> Bool {
 3         var set = Set<Int>()
 4         for i in 0..<nums.count {
 5             if i > k { set.remove(nums[i - k - 1]) }
 6             if !set.insert(nums[i]).inserted { return true }
 7         }
 8         return false
 9     }
10 }
复制代码

32ms

复制代码
 1 class Solution {
 2     func containsNearbyDuplicate(_ nums: [Int], _ k: Int) -> Bool {
 3         var set = Set<Int>()
 4         
 5         for i in 0..<nums.count {
 6             if i > k {
 7                 set.remove(nums[i - k - 1])
 8             }
 9             if !set.insert(nums[i]).inserted {
10                 return true
11             }
12         }
13         
14         return false
15     }
16 }
复制代码

40ms

复制代码
 1 class Solution {
 2     func containsNearbyDuplicate(_ nums: [Int], _ k: Int) -> Bool {
 3         var map: [Int:Int] = [:]
 4         
 5         for i in 0..<nums.count {
 6             if let index = map[nums[i]], i - index <= k {
 7                 return true
 8             } else {
 9                 map[nums[i]] = i
10             }
11         }
12         
13         return false
14     }
15 }
复制代码

44ms

复制代码
 1 class Solution {
 2     func containsNearbyDuplicate(_ nums: [Int], _ k: Int) -> Bool {
 3         var set: Set<Int> = []
 4         for i in 0..<nums.count {
 5             if i > k {
 6                 set.remove(nums[i-k-1])//移掉无效数据
 7             }
 8             if !set.insert(nums[i]).inserted {
 9                 return true
10             }
11         }
12         return false
13     }
14 }
复制代码

 

posted @   为敢技术  阅读(433)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· DeepSeek火爆全网,官网宕机?本地部署一个随便玩「LLM探索」
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 上周热点回顾(1.20-1.26)
· 【译】.NET 升级助手现在支持升级到集中式包管理
点击右上角即可分享
微信分享提示