Skip to content
Advertisement

Tag: multidimensional-array

Divide matrix into submatrix python

The program must accept an integer matrix of size R*C and four integers X, Y, P, Q as the input. The program must divide the matrix into nine submatrices based on the following condition. The program must divide the matrix horizontally after the Xth row and Yth row. Then the program must divide the matrix vertically after the Pth column

Smallest Submatrix in python

It contains an R*C matrix with unique digits. I have to print the submatrix having minimum and maximum integer This is my code: I need a solution without a NumPy array. I found the max and min values and also their index. After that, I don’t know what to do. Answer You can iterate over matrix again and get only

Advertisement