package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

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

# Functions

ContainsDuplicates checks if the list contains duplicates.