Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Skew-symmetric Matrix by gyahun_dash
def checkio(matrix):
return matrix == [[-element for element in row] for row in zip(*matrix)]
May 20, 2014
Comments: