C Dynamic Programming1 Min Read LetuscrackonJanuary 24, 2026 Largest Square Sub Matrix with 1s ExampleInput/Output 1:Input:7 51 1 1 0 11 1 0 1 00 1 1 1 11 1 1 1 11 1 1 1 11 1 1 1 10 0 0 0 0 Output:4
C1 Min Read LetuscrackonJanuary 14, 2026 Matrix Maximum Column Sum An integer matrix of size N*N is given as input. The program must print the maximum column-wise sum of the matrix. Boundary Condition(s):1…
C Python2 Min Read LetuscrackonJanuary 14, 2026 Matrix – Inverted L & Reverse L The program must accept an integer matrix of size NxN as the input. The program must print the layers of the matrix based on the…
C1 Min Read LetuscrackonJanuary 10, 2026 Matrix Find String Row-wise A character matrix of size N*N and a string S are given as input.The program must check if the string is present in the matrix row-wise and…
C1 Min Read LetuscrackonDecember 31, 2025 Matrix Zig-Zag from Top Right The program must accept an integer N as the input. The program must print the desired pattern as shown in the Example Input/Output…
Python1 Min Read LetuscrackonDecember 28, 2025 Rotate Matrix Pattern The program must accept an integer matrix of size N*N as the input. The program must rotate the matrix by 45 degrees in the clockwise…
C Dynamic Programming1 Min Read LetuscrackonDecember 27, 2025 Matrix Zig-Zag from Top Left The program must accept an integer matrix of size R*C as the input. The program must print the elements from the top left of the…
C Dynamic Programming1 Min Read LetuscrackonDecember 24, 2025 Matrix Zig-Zag from Bottom Right The program must accept an integer matrix of size R*C as the input. The program must print the elements from the bottom right of the…
C1 Min Read LetuscrackonDecember 23, 2025 Matrix Diagonals Sum You are given a square matrix of size N*N.Calculate the sum of integers present in the two main diagonals Example 1: Input:35 10 1179 6 129 21…
C2 Min Read LetuscrackonDecember 19, 2025 Word Search in Matrix The program must accept a character matrix of size R*C and a string S as input. The program must search the string S in…