Hi Every one
How I can arrange item list to match with the same index to avoid duplicates.
Thanks
The second one fine and this worked with me but first one duplicated one value.
This is because the list longest is going to repeat the last element when it runs out of items - as your test is false at index 2 & 3 the node will get index 1 being the last available index. My code creates the false condition for all six of the values but only uses them when the test is false, so the indexes align.
Example of lacing if we have two lists we would like to join…
["a", "b", "c", "d"]
and ["e", "f"]
Shortest: ["ae", "bf"]
Longest: ["ae", "bf", "cf", "df"]
Cross Product: ["ae", "af", "be", "bf", "ce", "cf", "de", "df"]
2 Likes
Sorry till now i didn’t get your point.
So What’s the solution problem if i need to use nodes with longest lacing not code block.