I keep getting " TypeError: unhashable type: 'list' " error every time I attempt to make my 2d list into a set. What should I do?
You could have a set of tuples, but you can't have a set of lists.
Question: what's the context? What are you trying to do that a list of lists won't work for?
I figured out the problem, I figured out another way to do it. Thank you
You would need a 3D list then.