HI,

You just change the method like below, it will work fine.

public static boolean identical(int[] a , int[] b)
{
boolean result = true ;
for (int i = 0; i...