Combination

Report a typo

Given two sets of strings, return a single set containing all their elements.

Sample Input:

[Hello, how]
[Hello, are, you]

Sample Output:

[Hello, how, are, you]
Write a program in Kotlin
fun solution(first: Set<String>, second: Set<String>): Set<String> {
// put your code here
}
___

Create a free account to access the full topic