217. Contains Duplicate
❀ Origin
Problem
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.
Example 1
1 | Input: [1,2,3,1] |
Example 2
1 | Input: [1,2,3,4] |
Example 3
1 | Input: [1,1,1,3,3,4,3,2,4,2] |
❀ 翻譯
問題
給定一個整數陣列,找出陣列是否包含任何重複值。
如果在陣列裡有任何數字出現了至少兩次以上,你的 function 應該要回傳 true,
而如果每個元素都是有明顯差異的,則回傳 false 。
❀ Solution
Golang
1 | // 解法一:建立 map 去作為 hash 表 |