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 artur_mierzwa
def checkio(matrix):
for i in range(len(matrix)):
for j in range(len(matrix)):
if not matrix[i][j] == (-1)*matrix[j][i]:
return False
return True
Oct. 31, 2016