Question: Write a method called arrayIsReversed that takes two non - empty int arrays and returns true if the second array contains the same values as

Write a method called arrayIsReversed that takes two non-empty int arrays and returns true if the second array contains the same values as the first, but in the opposite order.
So given {1,2,4} and {4,2,1}, you would return true, but given {1,2,4} and ,2 or {1,2,4} and {4,2,1,0} you would return false.
We suggest you approach this problem by looking for a counterexample. First, examine the lengths of the two arrays. If they are different, you can return immediately! Otherwise, loop through each element of the array looking for one that is incorrect. As soon as you find one, yo can return. And, once the loop concludes, you can also draw a conclusion.q
 Write a method called arrayIsReversed that takes two non-empty int arrays

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!