How to perform 'Intersection' in Groovy.
// Task: Intersection
// Language: Groovy
def intersection() {
// Implementation for Intersection
def result = ...; // Initialize variable
// TODO: Implement core logic here
// Step 1: Prepare data
// Step 2: Process Intersection
println("Done");
}