国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開(kāi)發(fā)設(shè)計(jì) > 正文

219. Contains Duplicate II

2019-11-11 07:28:21
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

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.

class Solution {public: bool containsNearbyDuplicate(vector<int>& nums, int k) { int size = nums.size(); map<int, int> m; for(int i = 0; i < size; ++i){ if(m.count(nums[i])){ if(i - m[nums[i]] <= k) return true; } m[nums[i]] = i; } return false; }};
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 芒康县| 青川县| 缙云县| 浦城县| 吴川市| 石楼县| 芷江| 弋阳县| 六枝特区| 长海县| 绥芬河市| 剑川县| 澄江县| 翁牛特旗| 兴化市| 兴和县| 宜川县| 云梦县| 永济市| 潜山县| 社会| 德州市| 石屏县| 定兴县| 抚宁县| 邻水| 志丹县| 涪陵区| 九龙县| 阳谷县| 砀山县| 鲜城| 荥阳市| 肥乡县| 张家界市| 门头沟区| 阳春市| 通海县| 荔浦县| 聂拉木县| 西藏|