On 2007-12-14, John Machin <[EMAIL PROTECTED]> wrote:
> On Dec 14, 10:45 am, Breal <[EMAIL PROTECTED]> wrote:
>> I have a list that looks like the following
>> [(10, 100010), (15, 17), (19, 100015)]
>>
>> I would like to be able to determine which of these overlap each
>> other. So
Breal wrote:
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
> I would like to be able to determine which of these overlap each
> other
In relation to a similar (but not identical) problem, that of
finding nested scopes and the associated
Hi Breal
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
>
> I would like to be able to determine which of these overlap each
> other. So, in this case, tuple 1 overlaps with tuples 2 and 3. Tuple
> 2 overlaps with 1. Tuple 3 overlaps with
On Dec 14, 12:05 pm, Dave Hansen <[EMAIL PROTECTED]> wrote:
> On Dec 13, 5:45 pm, Breal <[EMAIL PROTECTED]> wrote:
>
> > I have a list that looks like the following
> > [(10, 100010), (15, 17), (19, 100015)]
>
> > I would like to be able to determine which of these overlap each
> >
On Dec 13, 5:45 pm, Breal <[EMAIL PROTECTED]> wrote:
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
>
> I would like to be able to determine which of these overlap each
> other. So, in this case, tuple 1 overlaps with tuples 2 and 3. Tuple
>
On Dec 14, 10:45 am, Breal <[EMAIL PROTECTED]> wrote:
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
>
> I would like to be able to determine which of these overlap each
> other. So, in this case, tuple 1 overlaps with tuples 2 and 3.
Your d
On Dec 13, 3:45 pm, Breal <[EMAIL PROTECTED]> wrote:
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
>
> I would like to be able to determine which of these overlap each
> other. So, in this case, tuple 1 overlaps with tuples 2 and 3. Tuple
>
You should give a more real data set (maybe 20 various pairs so that all
scenarios can be seen) and the output you want.
Breal wrote:
> I have a list that looks like the following
> [(10, 100010), (15, 17), (19, 100015)]
>
> I would like to be able to determine which of these ove