Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Find Intersection

Find the common elements of 2 integer arrays. This is basically the 'intersection' set operation.

find_intersection([1,4,4,66,77,100], [3,4,100]) # > [4, 100]