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
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 ;
}
**
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