This post shows how to create and use Lists in Kotlin. It will also briefly touch on mutable and immutable lists.
Kotlin – Convert comma-separated String to a List
This post shows how to convert a comma-separated strings (CSVs) to a list and back. In Kotlin, we can create both immutable or mutable lists.
Kotlin – Check if a certain values exists in a list
This post shows examples of codes to check if certain values exists in a list.