Using Set

We'll cover the following...

Creating sets in Kotlin

Sets are unordered collections of elements. Like the methods for creating List<T>, which has both immutable/read-only and mutable/read-write versions, you may create instances of Set<T> using setOf() or instances ...