Okay, so the assignment is:
Associate True with the variable has_dups if the list list1 has any duplicate >elements (that is if any element appears more than once), and False otherwise.
Okay, so did some searching and found a couple different ways to search for the presence of duplicates. But here is where it gets... weird.
The system for my homework is telling me these methods are wrong and that I should be using LEN.
Um... how will knowing the length of a list help me find out if there are duplicates in the list? Like if I have
myList = [200,200,201,202]
okay Len will tell me that I have 4 items in there. So... what does that do to help me find duplicates?