Python ZOHO1 Min Read LetuscrackonJune 12, 2024 Smaller Matrix Search [ZOHO] Smaller Matrix Search [ZOHO]: A bigger NxN matrix is passed as the input. Also a smaller MxM matrix is passed as input. The program must print…
C Java Python3 Min Read LetuscrackonJune 12, 2024 Two Matrix Spiral Print The program must accept two square matrices which are of size N*N. Then the values in the matrices must be printed spirally in clock wise…
C Java Python4 Min Read LetuscrackonJune 12, 2024 Find the Maximum Element in a Matrix You are given a matrix of size R*C containing integers. Write a program to find the maximum element present in the matrix. Note: Make sure to…
C Java Python4 Min Read LetuscrackonJune 12, 2024 Find the Sum of All Elements in a Matrix You are given a matrix of size R*C containing integers. Write a program to find the sum of all elements present in the matrix. Note: Make sure…
Java1 Min Read LetuscrackonJune 11, 2024 Reverse Columns In Matrix Given a square matrix of size N, reverse column values in the matrix and print the modified matrix as the output. Boundary Condition:1<= N…
Python1 Min Read LetuscrackonJune 11, 2024 Search Hexadecimal Value – Matrix The program must accept a character matrix of size RxC containing only hexadecimal digits and an integer X as the input.…
Dynamic Programming Python1 Min Read LetuscrackonJune 11, 2024 DP – Matrix Ways from Top Left to Bottom Right The number of rows R and columns C of a matrix are passed as the input. The program must print the number of ways W to traverse from the top…
C1 Min Read LetuscrackonJune 11, 2024 Matrix Transpose Given a matrix of R rows and C columns as the input, the program must print the transpose of the input matrix. Input Format:The first line…
Python1 Min Read LetuscrackonJune 11, 2024 Matrix Diagonal Pattern Given an integer matrix of size N*N as input, the program must print only the diagonal elements. The remaining elements must be replaced by *…
C1 Min Read LetuscrackonJune 11, 2024 Traverse Square Matrix – Spiral 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…