Computer Science, asked by Krishna8298, 1 year ago

Python program to find the substring present in diagonal of the matrix

Answers

Answered by jayasivapriya10
0

Given a 2D grid of characters and a word, find all occurrences of given word in grid. A word can be matched in all 8 directions at any point. Word is said be found in a direction if all characters match in this direction (not in zig-zag form).

The 8 directions are, Horizontally Left, Horizontally Right, Vertically Up and 4 Diagonal directions.

Similar questions