Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
numpy.array solution in 3rd party category for Skew-symmetric Matrix by gyahun_dash
from numpy import array, array_equal
def checkio(matrix):
return array_equal(matrix, - array(matrix).T)
Oct. 10, 2016
Comments: