Answered step by step
Verified Expert Solution
Link Copied!

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 (1<= n,m <=100) 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 lower-case English letters
only
For Example:
A sample dialogue (input) is:
Enter n value: 5
Enter m value: 5
COP3530 Assignment 1 Page 2 of 2
Enter 5 lines of 5 characters:
safer
amjad
babol
aaron
songs
This input will be stored in a 2D 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 3 times.
Also, compute the time complexity of your program in terms of Big-Oh.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

AWS Certified Database Study Guide Specialty DBS-C01 Exam

Authors: Matheus Arrais, Rene Martinez Bravet, Leonardo Ciccone, Angie Nobre Cocharero, Erika Kurauchi, Hugo Rozestraten

1st Edition

1119778956, 978-1119778950

More Books

Students also viewed these Databases questions

Question

Compare and contrast the housing patterns of different cultures

Answered: 1 week ago

Question

Compare and contrast high- and low-load environments

Answered: 1 week ago

Question

Describe why intercultural communication competence is a necessity

Answered: 1 week ago