博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode]Contains Duplicate II
阅读量:6468 次
发布时间:2019-06-23

本文共 465 字,大约阅读时间需要 1 分钟。

 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 difference between i and jis at most k.

 

和类似,多了个判断而已。

注意可能有多个重复,例如[1,0,1,1],1 为 True。

1 class Solution { 2 public: 3     bool containsNearbyDuplicate(vector
& nums, int k) { 4 unordered_map
showed; 5 for(int i=0;i

 

转载于:https://www.cnblogs.com/Sean-le/p/4742070.html

你可能感兴趣的文章
状态模式
查看>>
VC++获得微秒级时间的方法与技巧探讨(转)
查看>>
HDOJ-1010 Tempter of the Bone
查看>>
JavaNIO基础02-缓存区基础
查看>>
日本开设无人机专业,打造无人机“人才市场”
查看>>
190行代码实现mvvm模式
查看>>
PXE部署实例
查看>>
cobbler初探------实现自动安装centos6.4
查看>>
Android Studio 2.0 preview3 BUG
查看>>
兼容几乎所有浏览器的透明背景效果
查看>>
Go语言4
查看>>
jeesite 框架搭建与配置
查看>>
Adb移植(一)简单分析
查看>>
Linux VNC server的安装及简单配置使用
查看>>
阿里宣布开源Weex ,亿级应用匠心打造跨平台移动开发工具
查看>>
Android项目——实现时间线程源码
查看>>
招商银行信用卡重要通知:消费提醒服务调整,300元以下消费不再逐笔发送短信...
查看>>
python全栈_002_Python3基础语法
查看>>
C#_delegate - 调用列表
查看>>
交换机二层接口access、trunk、hybird三种模式对VLAN的处理过程
查看>>