Element problem

Report a typo

Given a Set and a MutableList of strings, return true if all the elements in the MutableList occur in the Set; otherwise, return false.

Sample Input 1:

A B C D
A B C D

Sample Output 1:

true
Write a program in Kotlin
fun solution(first: Set<String>, second: MutableList<String>): Boolean {
// put your code here
}
___

Create a free account to access the full topic