Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Skew-symmetric Matrix by mozurin
"use strict";
function symmetric(matrix)
{
return matrix.every(
(_, r) => matrix[0].every(
(_, c) => matrix[r][c] == -matrix[c][r]
)
);
}
June 25, 2018
Comments: