So I\'m stuck on this problem where I\'ve been asked to write an function in Python that checks to see if an n-dimensional array (is that what they\'re called?) is \"symmetric\"
A version for Python3
def symmetric(L) return all(i==j for i,*j in zip(L ,*L))