Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in 3rd party category for Skew-symmetric Matrix by s_o_va
import numpy
def checkio(matrix):
return numpy.array_equal(matrix, -numpy.transpose(matrix))
Sept. 12, 2018
Comments: