Question: Write a method named compareArrays that accepts two integer arrays as its parameters and returns true if the first array contains the same elements, in
Write a method named compareArrays that accepts two integer arrays as its parameters and returns true if the first array contains the same elements, in the same order, as the second array. Otherwise, return false. If the arrays are different lengths, return false. JAVA
public static boolean compareArrays (int a[ ], int b[ ])
Note: This method does not print anything.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
