2017年11月19日 星期日

[LeetCode] 217. Contains Duplicate

轉自LeetCode

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.

<Solution>

這題會用到 search 和 insert,直覺使用 hash table 來解這題

因為 hash table 的 search 和 insert 可以視作 O(1)

code 如下

C++

Java

沒有留言:

張貼留言