Subtraction

Report a typo

You are given two sets of integers in the input. Subtract one from the other and return the size of the resulting set.

Sample Input 1:

8 11 12 13
8 12

Sample Output 1:

2
Write a program in Kotlin
fun solution(numbers1: Set<Int>, numbers2: Set<Int>): Int {
// put your code here
}
___

Create a free account to access the full topic