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 nonempty int arrays and returns true if the second array contains the same values as the first, but in the opposite order.
So given and you would return true, but given and or and you would return false.
We suggest you approach this prolilem 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, you can return. And, once the loop concludes, you can also draw a conclusion.
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
