Introduction
Sets help you store unique items without duplicates. You use setOf for fixed sets and mutableSetOf when you want to change the set later.
When you want to keep a list of unique names without repeats.
When you need to check if an item is already added quickly.
When you want to add or remove items from a collection during the program.
When you want to avoid duplicates in a collection of numbers or strings.