w3resource

Python: Find whether a given array of integers contains any duplicate element


14. Check if an Array Contains Any Duplicate Elements

Write a Python program to find out if a given array of integers contains any duplicate elements. Return true if any value appears at least twice in the array, and return false if every element is distinct.

Sample Solution:

Python Code :

def test_duplicate(array_nums):
    nums_set = set(array_nums)    
    return len(array_nums) != len(nums_set)     
print(test_duplicate([1,2,3,4,5]))
print(test_duplicate([1,2,3,4, 4]))
print(test_duplicate([1,1,2,2,3,3,4,4,5]))

Sample Output:

False
True
True

For more Practice: Solve these Related Problems:

  • Write a Python program to determine if an array has duplicate elements by comparing its length to the length of a set created from it.
  • Write a Python program to iterate over an array and use a set to track seen items, returning True if a duplicate is found.
  • Write a Python program to implement a function that returns True if any element appears more than once in an array using collections.Counter.
  • Write a Python program to use a loop to check for duplicates in an array without using built-in functions.

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to convert an array to an ordinary list with the same items.
Next: Write a Python program to find the first duplicate element in a given array of integers. Return -1 If there are no such elements.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.