I have a [[String]]
like
myArr = [["1_2","1_3","1_4"], ["2_1","2_2","2_3"], ["3_1","3_2","3_3"]]
then
I Want to remove element like this
bypassArr = ["1_2","2_3","3_2"
]
how to remove bypassArr
from myArr
using element. or how can i get this type of result.
result = [["1_3","1_4"], ["2_1","2_2"], ["3_1","3_3"]]