Re: need helps

2011-09-09 Thread Mike McClain
On Thu, Sep 08, 2011 at 04:00:43PM +, Zhu, Qichao wrote: > There are two arrays > @a = [[a,b,c]...[d,e]...[f]...[g,h]...] > @b = [[...],[...,a,..,c,...,b...],[d],[e],[g...h]...] > > How can I make an arithmetic to detected that. > if (element of array @a include by the element of array @b one

RE: need helps

2011-09-08 Thread Zhu, Qichao
Hi There are two arrays @a = [[a,b,c]...[d,e]...[f]...[g,h]...] @b = [[...],[...,a,..,c,...,b...],[d],[e],[g...h]...] How can I make an arithmetic to detected that. if (element of array @a include by the element of array @b one time){ True; Else { False ; } **

Re: need helps

2011-09-08 Thread Shlomi Fish
Hi, On Thu, 8 Sep 2011 16:00:43 + "Zhu, Qichao" wrote: > Hi > > There are two arrays > > @a = [[a,b,c]...[d,e]...[f]...[g,h]...] > @b = [[...],[...,a,..,c,...,b...],[d],[e],[g...h]...] > I don't understand this notation. Are these arrays of arrays? > How can I make an arithmetic to dete