Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Skew-symmetric Matrix by hanpari
def checkio(m):
return all([not (m[i][j] + m[j][i]) for
i in range(len(m)) for
j in range(len(m))])
#These "asserts" using only for self-checking and not necessary for auto-testing
May 4, 2014
Comments: