算法
Java
Leetcode
Golang
Find if the array contains any duplicates.
Question
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.
See it on Leetcode
|
|
Hint
Utilize a dynamic data structure that supports fast search and insert operations.
Solution in Java and Golang
- java
- go
1 | public class Solution { |