Division problem

Report a typo

Your function receives two sets of Int. Return a new set of elements in the first set that are multiples of the size of the second set.

Sample Input 1:

10 11 14 16 2 1
2 1

Sample Output 1:

10 14 16 2
Write a program in Kotlin
fun solution(first: Set<Int>, second: Set<Int>): Set<Int> {
// put your code here
}
___

Create a free account to access the full topic