Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one-liner transpose and negate solution in Clear category for Skew-symmetric Matrix by imtiaz.rahi
def checkio(matrix):
return matrix == [[-matrix[j][i] for j in range(len(matrix))] for i in range(len(matrix[0]))]
Aug. 26, 2019