There are two main point different between Set and List
- List can contain duplicate elements, but Set can not contain duplicate elements
- Lists maintain the orders of elements added but Set don’t maintain the orders of elements added except LinkedHashSet.