Matrix

CF

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…
CF

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…
PythonF

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…
CF

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…
CF

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…
CF

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…