按照og里面的说法,集合(sets)里面的元素重复的话,可以忽略重复项;比如“For example, the sets {1, 2, 3, 2} and {3, 1, 2} are the same set, which has three elements.”
但是对于列表来说,重复项仍然是有意义的。比如“the members are ordered; that is, rearranging the members of a list makes it a different list. the lists 1, 2, 3, 2 and 1, 2, 2, 3 are different lists, each with four elements, and they are both different from the list 1, 2, 3, which has three elements”