Ok, so I’ve got a list with sublist.
And I’m trying to compare the sublist values with each other to see if any values are different.
So the sublists within the red box get compared to one another.
The sublists in the green box get compared to one another.
And the sublists in the blue box get compared to one another.
What I’m looking to end up with is a list with true and false statements along these lines:
0 List
– 0 List
---- 0 True
---- 1 True
---- 2 False
---- 3 True
1 List
– 0 List
---- 0 True
---- 1 True
---- 2 True
---- 3 True
2 List
– 0 List
---- 0 True
---- 1 True
---- 2 False
---- 3 True
Any suggestions in how to achive this?
Thx!