What could we use to store a collection of temperature measurements which could repeat themselves?
- A list, because it would allow for duplicate temperature values
- A set, because it would allow for duplicate temperature values
- Either a list or a set, since both allow duplicates
A list, because it would allow for duplicate temperature values.