Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Skew-symmetric Matrix by a691662
# migrated from python 2.7
def checkio(matrix):
for m, n in zip(matrix, list(zip(*matrix))):
for i, j in zip(m, n):
if i+j:
return False
return True
Feb. 10, 2015
Comments: