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 9maksim
def checkio(matrix):
import numpy as np
a = np.array(matrix)
return (a == -a.T).all()
Jan. 10, 2020