I originally had a list of lists and I wanted to create a dictionary with keys as these lists of lists but I know lists cannot be hashed. So I tried converting the outer list into a tuple and then hashing it, but compiler still says TypeError: unhashable type: 'list'. So I was wondering if there is any way I could create y using x where x is as follows?:
x = ([0, 0], [1, 1], [2, 0], [3, 1])
y = {}
y[x] = 1
print('y: ', y)
