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 tokiojapan55
def checkio(matrix):
import numpy as np
return np.array_equal(np.array(matrix), (np.array(matrix).T * -1))
April 20, 2020