result_add = [[matrix1[i][j] + matrix2[i][j] for j in range(len(matrix1[0]))] for i in range(len(matrix1))] return result_add def subtract_matrices(matrix1, matrix2 ...
List.java: This file is the ADT specified for assignment 1. It contains the Node class with three constructors: (next, previous and data), and all of the specified constructors for the List class.