Let us assume that we have 4 different list which are independent of each other, But value in it are dependent of each other.
Say:-
List1 = [ ]
List2 = [ ]
List3 = [ ]
List4 = [ ]
i.e
value at List4[5] dependent with List1[5], List2[5], List3[5]
If i'm sorting List4 i don't want to loose the dependency of the values which are interconnected.
How can i do that..
Thanks in advance...