Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 385 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 385 Bytes

64.Contains Duplicate

Description

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

Input: [1, 1, 3]

Output: true

From

LeetCode