I have a set of correct combinations like following
[["dbc", "dbs", "dbt"], ["dyc", "dys", "dyt"], ["drc", "drs", "drt"]]
and was hoping to see if my combinations contain any of correct combination when my combinations are
[["drs", "gbc", "lrs"], ["grt", "lbc", "lbt"], ["drc", "drs", "drt"], ["dyc", "dys", "dyt"]]
If there are any matches, then print out correct combination.
I've tested .contains, but I guess it only works with finding one element in one-dimensional array. How can I check if multi-dimensional array contains specific arrays?