Post History
Python 3.8+, 28 bytes from numpy.linalg import det Remember that from ... import ... can be used to save bytes. Note that this has already been mentioned in a comment section on @Quintec's ans...
#1: Initial revision
# Python 3.8+, 28 bytes ```python from numpy.linalg import det ``` Remember that `from ... import ...` can be used to save bytes. Note that this has already been mentioned in a comment section on @Quintec's answer, but I'm only posting this so this method specifically has its own answer, as it seems that @Quintec hasn't been on here since at least 5 months ago. --- [Link](https://www.online-python.com/WPZ8rCXuod) (Click `> Run` to verify that this gives return code 0)