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 :
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.
Go to:
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.
Python Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.