Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Description

Given an array of values. Determine if there is a duplicate one

Example 1:

Input: {1, 2, 3}
Output: false

Example 2:

Input: {"key1", "key2", "key1"}
Output: true