Traverse through an array
Hi, I have data in array format in two different streams , I want to check whether the array elements of the 1st stream are present in the 2nd stream or not. How should I do that? [“1001”,“1003”] [“1001”,“1002”,“1003”,“1004”] I have tried using ma...