Python function to check for duplicates in a list of integers

This Python function checks whether a given list of integers contains any duplicate elements.

Problem

Given a list of integers, write a Python function to check if the list contains any duplicate elements.
Example input: [1,2,3,4,5]
Example output: False

Solution

This solution is in Python. Our A.I. can create solutions in multiple languages.
by kayakane
def check_duplicates(list):
    
    This function checks if a list contains any duplicate elements.
    It uses a set to store the elements of the list.
    If the length of the set is equal to the length of the list,
    then there are no duplicates.
    
    return len(set(list)) != len(list)

print(check_duplicates([1,2,3,4,5]))
print(check_duplicates([1,2,3,4,5,5]))

A.I. Evaluation of the Solution

This solution correctly detects whether or not a list contains duplicate elements. The approach is straightforward and easy to understand.

Evaluated at: 2022-11-22 04:16:05