There was a theft of research hardware on campus last night. Based on eyewitness accounts, they figured out the suspect went through the Siebel Center for Computer Science, the Digital Computing Laboratory, and the Illini Union. Luckily, you have the lists of the people who entered each building from their I-Card ID swipes.
You've been given three Set<String>
s that represent the lists of people that entered each building
yesterday.
Your job is to create a function called calculateSuspects
that when given these parameters returns the list of
suspects as a Set<String>
.
This list should consist of all the names of all people who are included in at least two of the Set
s.
You may find reading the documentation for intersect
(intersection) helpful.
Readings:
Note that you do not need add any import
statements to use sets in Kotlin.
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: