94. Rows with Unequal Values

Hard

Given a matrix Z, extract the rows that do not have all-equal values (e.g. keep [2, 2, 3], drop [5, 5, 5]). Return the filtered rows.

Implement solve(...)