Given an array of integers numbers, determine whether the array contains any duplicate values. A duplicate is defined as any number that appears more than once in the array.
Input
numbers: number[]: An array of integers
Examples
Input: numbers = [5,7,1,3]
Output: false
Explanation: All elements in the array are unique.