List values in between two lists

Hi

How do I make a list of values that are between two different lists?
I have made two lists by size of circles, first lists are length values larger than 15, the second one is circles that have a length smaller than 10.

How do I make a third list with the rest of the values, a list of circles that are smaller than 15 and larger than 10 aka the rest of the circles.

Thanks

cull_circles.gh (17.1 KB)

Just addtion the booleans and invert the the pattern like this
cull_circles_re.gh (14.9 KB)

Amazing! Thank you!

Addition is the functional equivalent of Or:

1 Like

You could also do it this way:


cull_circles_2020Aug27a.gh (17.1 KB)

1 Like

Thank you!