91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 217. Contains Duplicate 數組

發布時間:2020-07-02 19:14:39 來源:網絡 閱讀:288 作者:313119992 欄目:編程語言

217. Contains Duplicate

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is distinct.

題目大意:

在數組中找到任意字符出現次數大于等于2次就返回true,如果數組中每一個字符都出現1次,則返回false。

代碼如下:

class Solution {
public:
    bool containsDuplicate(vector<int>& nums) {
        unordered_map<int,int> myMap;
        for(int i = 0;i < nums.size();i++)
        {
            if(myMap.find(nums[i]) == myMap.end() )
            {
                myMap.insert(pair<int,int>(nums[i],1));
            }
            else
                return true;
        }
        return false;
    }
};

2016-08-12 01:36:29

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌江| 获嘉县| 观塘区| 内黄县| 甘洛县| 贵州省| 五家渠市| 曲周县| 闻喜县| 扎鲁特旗| 宽城| 新田县| 如皋市| 延吉市| 黄梅县| 平山县| 金乡县| 莆田市| 商洛市| 逊克县| 婺源县| 湟源县| 保德县| 镇平县| 安乡县| 拉萨市| 汽车| 怀远县| 岱山县| 广昌县| 赣州市| 正阳县| 宜阳县| 木兰县| 行唐县| 潼南县| 扬中市| 华池县| 蓝山县| 淮南市| 阿坝县|