Python1 Min Read LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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 LetuscrackonJune 9, 2024 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…
C Java Python2 Min Read LetuscrackonJune 9, 2024 Matrix – Same Characters The program must accept a character matrix of size NxN as the input. The program must print YES if all the characters in the diagonals (both…
C1 Min Read LetuscrackonJune 9, 2024 2D MATRIX MODIFICATION A Matrix has R rows and C columns. Get the matrix as input and multiply the value in the cells of the matrix by a value E if it is even and…
C1 Min Read LetuscrackonJune 9, 2024 2D Matrix – Elements Adjacent Sum Given a matrix of R rows and C columns, for each element print the sum of the adjacent elements.Input Format:The first line contains RThe…
C Python1 Min Read LetuscrackonJune 9, 2024 2D Matrix Absolute Difference Diagonals Elements Sum A Square Matrix has N rows and N columns. Get the matrix as input and find the absolute difference between the sum of the values in the two…
C1 Min Read LetuscrackonJune 9, 2024 Matrix Traverse Clockwise A square matrix of size N*N is provided. The program must traverse the matrix spirally and print the elements in a single line. Input…