Skip to content

Instantly share code, notes, and snippets.

@MeherajUlMahmmud
Created April 23, 2021 17:42
Show Gist options
  • Save MeherajUlMahmmud/ece40042951b0dac535f8df6027d0e0a to your computer and use it in GitHub Desktop.
Save MeherajUlMahmmud/ece40042951b0dac535f8df6027d0e0a to your computer and use it in GitHub Desktop.
def calcMinor(matrix, r, c):
minor = (matrix[r-2][c-2] * matrix[r-1][c-1]) - (matrix[r-1][c-2] * matrix[r-2][c-1])
return minor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment