Re: [GENERAL] GENERAL - [How to check if the array contains the element.]

2017-04-26 Thread Pavel Stehule
Hi 2017-04-26 13:33 GMT+02:00 Andreas Kretschmer : > > > Am 26.04.2017 um 13:24 schrieb VENKTESH GUTTEDAR: > >> Hello All, >> >> How do i check if any one element of one array exists in another >> array. >> Eg: >> array1 = [1,2,3,4] >> array2 =

Re: [GENERAL] GENERAL - [How to check if the array contains the element.]

2017-04-26 Thread Andreas Kretschmer
Am 26.04.2017 um 13:24 schrieb VENKTESH GUTTEDAR: Hello All, How do i check if any one element of one array exists in another array. Eg: array1 = [1,2,3,4] array2 = [1,4,5,7] Now i expect the result as true even if any one element matches from array2 in array1.

[GENERAL] GENERAL - [How to check if the array contains the element.]

2017-04-26 Thread VENKTESH GUTTEDAR
Hello All, How do i check if any one element of one array exists in another array. Eg: array1 = [1,2,3,4] array2 = [1,4,5,7] Now i expect the result as true even if any one element matches from array2 in array1. Any help would be appreciated. Thank you. --