Two sides of the same

Report a typo

Write a function intsToSet(ints: MutableList<Int>): Set<Int> that takes input and outputs a set of Int's from the input list.

Write a program in Kotlin
fun intsToSet(ints: MutableList<Int>): Set<Int> {
// write here
}
___

Create a free account to access the full topic