Conversion

Report a typo

Given a MutableList of Strings in the input, convert it to Set.

Sample Input 1:

A B C D A

Sample Output 1:

A B C D
Write a program in Kotlin
fun solution(strings: MutableList<String>): Set<String> {
// put your code here
}
___

Create a free account to access the full topic