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\"
This bit of code will do it all for you:
def symmetric(square):
square = [tuple(row) for row in square]
return square == zip(*square)
In your solution you're doing too much of the work yourself. Python will compare sequences for you, so an easier method is to transpose the square so its rows become columns and vice versa and then compare it to the original value.
We can transpose the square using the zip function. This takes a number of sequences and returns a tuple containing first of each and then a tuple with the second of each and so on. By passing square
as *square
we pass each row as a sperate argument; this has the effect of transposing the square.
The only complication is that zip
returns tuples not lists so we have to make sure square
is a list of tuples so the comparison works.