Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started