Function call
|
Q1
|
Q2
|
Result
|
---|---|---|---|
Q1.Intersection(Q2)
|
{4,2,9,6,1,7}
|
{6,10,3,5,9}
|
{9,6}
|
Intersection(Q1, Q2)
|
{4,2,9,6,1,7}
|
{3}
|
{}
|
Function call
|
Q1
|
Q2
|
Q3
|
Result
|
---|---|---|---|---|
Q1.Intersection(Q2, Q3)
|
{5,6,8,2,3}
|
{1,3,4,6}
|
{2,4,6,7,8}
|
{6}
|
Intersection(Q1, Q2, Q3)
|
{5,6,8,2,3}
|
NULL
|
{2,4,6,7,8}
|
{6,8,2}
|