I have two multiD lists
list one [["hello","how", "are", "you"]] and
list two [["ss", "gg", "ff"]]
I want to compare EACH of the rows in list one with all of the rows values in list two.
Example
If list one has 2 rows with arrays list[2][values]
and list two has 3 rows with arrays list[3][values]
then
list one [0][all values] compare with
list two[0][values],
list two[1][values],
list two[2][values], and
list two[3][values].
Then take row two of list one and compare it with
all rows in list two again
and so on.
how could that be done?