Hi - I have 2 lists of the same length. Both are Strings: I would like to map one to another without using 2 for loops
VertexList[g] = {a,b,c,d}
nodeLabels
= {a - description, d - description, c, a}
As you can see the lists are not in the same sequence but can be matched using a pattern since nodeLabels
always begins with the same element in VertexLis[g]
I tried to follow the example from here and tried some adaptations from here without much success. Thanks in advance for any leads or examples..
`