I have a 4x4 matrix that I need to find the minor of.
4 5 6 2
3 4 5 5
7 4 3 3
5 7 6 8
The minor is basically the resultant matrix that you get when you remove the row/column that [i,j] is in. So for instance, if I had a Matrix(A), and I needed the minor of A[2,3], I would be removing (from the above) I would end up with the following matrix:
4 5 6
3 4 5
5 7 6
Any ideas on how I could get that result? Preferably something where I could pass in the 2d array representing the matrix, and the i,j position that I wanted to eliminate.

