Answered step by step
Verified Expert Solution
Question
1 Approved Answer
We have declared a method called crop with one char[][] parameter art and four int parameters leftX, rightX, topY, and bottomY. TASK: Fill in the
We have declared a method called crop with one char[][] parameter art and four int parameters leftX, rightX, topY, and bottomY. TASK: Fill in the body of the crop method such that it returns the result of cropping art in the rectangle bounded by the corners (leftX, topY), (leftX, bottomY), (rightX, topY), and (rightX, bottomY), inclusive, wrapped in a frame of asterisks (*). HINT: The top-left corner of art is the point (0,0), which is art[0][0]. HINT: The first dimension of art is the vertical dimension. For example, art[0] is the first row of art. Gollum ASCII art originally created by Shanaka Dias Sample Input: 10 18 1 5 *** |_' _' /\ ;a/ e= J/- ' " ;- \./ ) L~" ' -; )' -.'") \ --\{`', --/ (- |_'- .- \j\L\ Ccc. .=' / |\7 ******* ** Sample Output: *********** */-' -' * *;a/ e= J/* *\ ~- * L~"'. *********** Write a program, test using stdin stdout Time limit: 8 seconds Memory limit: 256 MB 1 static char[][] crop(char[][] art, int leftX, int rightX, int topY, int bottomY) { // YOUR CODE HERE 3 } 4 8. 1 point per submission
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