moved module files to the modules directory

This commit is contained in:
Donald Calloway 2025-10-04 19:28:51 -07:00
parent ce7ed31b5c
commit d0cb7586db
5 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import determinate3x3 import modules.determinate3x3 as determinate3x3
Matrix = [ Matrix = [
[4, 3, 6], [4, 3, 6],

View File

@ -12,7 +12,7 @@ NOTE: You call determinate3x3.det3x3(M) to find the determinate of matrix M. If
will receive an AssertionError: "Matrix is not 3x3" will receive an AssertionError: "Matrix is not 3x3"
""" """
import determinate2x2 import modules.determinate2x2 as determinate2x2
import copy import copy

View File

@ -1,5 +1,6 @@
from typing import List from typing import List
""" """
Flattens a 2D list (matrix) into a 1D list. Flattens a 2D list (matrix) into a 1D list.
Args: Args: