Question: KOTKIN 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
KOTKIN
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 {4, 2} or {1, 2, 4} and {4, 2, 1, 0} you would return false.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
