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

首頁 > 學院 > 開發(fā)設計 > 正文

219. Contains Duplicate II

2019-11-11 07:33:27
字體:
來源:轉載
供稿:網友

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ā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 灵丘县| 乌什县| 静安区| 壤塘县| 宁远县| 成都市| 葫芦岛市| 资中县| 墨玉县| 宁南县| 安多县| 永福县| 鸡泽县| 茶陵县| 务川| 阜新市| 应城市| 通许县| 莎车县| 邯郸市| 余姚市| 肇州县| 通江县| 宁化县| 临湘市| 如东县| 平湖市| 辉县市| 龙岩市| 象州县| 龙陵县| 澄城县| 如皋市| 项城市| 咸阳市| 防城港市| 大渡口区| 寿阳县| 乌什县| 宁化县| 剑河县|