thatadamedwards
04/19/2018, 6:41 PMval map = mutableMapOf("fruits" to mutableSetOf("apple", "banana", "orange", "cherry"))
fun putValueInAppropriateCategory(value: String, key: String, map: MutableMap<String, MutableSet<String>>) {
map[key] + value
}