Python1 Min Read LetuscrackonJune 11, 2024 Forward and Reverse Order of Alphabets – Matrix Pattern Accept an integer N and an alphabet A as input. The program must print the pattern as shown in the Example Input/Output section below. (Note:…
Python1 Min Read LetuscrackonJune 10, 2024 Matrix – Inside Numbers Sum A set of numbers forming a matrix N*N is passed as input. The program has to print the sum of numbers which are not along the edges. Input…
C Java Python2 Min Read LetuscrackonJune 10, 2024 Matrix Palindrome The program must accept an integer matrix of size RxC as the input. The program must print YES if every row and every…
Python2 Min Read LetuscrackonJune 10, 2024 Matrix Rotation – Anti Clock Wise A M*N matrix having M rows and N columns containing integer values is passed as the input. The matrix must be rotated R times in counter-clock…
C1 Min Read LetuscrackonJune 10, 2024 Matrix Print Excluding Border elements A matrix of size N*N is passed as input. The program must print the matrix excluding the elements present at the border of the matrix.…
C Dynamic Programming1 Min Read LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 10, 2024 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 LetuscrackonJune 9, 2024 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…