Hi,
how to perform a logical OR operator on nested lists (shown on top of a snip) to get a single combined list (shown at the bottom)
So, basically doing [L[0][0] || L[1][0] || L[2][0], L[0][1] || L[1][1] || L[2][1], etc]
Thanks,
Hi,
how to perform a logical OR operator on nested lists (shown on top of a snip) to get a single combined list (shown at the bottom)
So, basically doing [L[0][0] || L[1][0] || L[2][0], L[0][1] || L[1][1] || L[2][1], etc]
Thanks,
hello, I’m not in front of pc but should work
1-transpose
2-count true with rank management
3- an if with count !=0 true otherwise false
4-transpose
cordially
christian.stan
FYI: There is a node called List.AnyTrue, if you plug that after the first Transpose node at @L2 you already have what you want.