Ad
  • Custom User Avatar

    Your code is failing this edge case:

    	@Test
    	public void test8() {
    		int[] a = new int[]{0, -14, 191, 161, 19, 144, 195, 1};
    		int[] b = {1, 0, 14 * 14, 191 * 191, 161 * 161, 19 * 19, 144 * 144, 195 * 195};
    		assertEquals(true, AreSame.comp(a, b)); 
    	}
    

    Troubleshooting Your Solution

    Not a kata issue.