Question: Please code this in Java format not in phython , you are given an n x m grid which contains lower case English letters. How
Please code this in Java format not in phython you are given an n x m grid which contains lower case English letters. How many times does the
phrase "saba" appear horizontally, vertically, and diagonally in the grid?
Input Format:
First line: Two integer n and m where n denotes nm the number of rows and
m denotes the number of columns in the grid
Next n lines: Each line must contain a string of length m which contains lowercase English letters
only
For Example:
A sample dialogue input is:
Enter n value:
Enter m value:
COP Assignment Page of
Enter lines of characters:
safer
amjad
babol
aaron
songs
This input will be stored in a D array of n x m
s a f e r
a m j a d
b a b o l
a a r o n
s o n g s
Output Format:
Print the number of times the word saba appears in the grid.
As an output of the above sample data the word saba appears times.
Also, compute the time complexity of your program in terms of BigOh
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
