int[][] dp = new int[5][2]; Arrays.fill(dp,new int[2]{2,3}); dp[1][0] = 10;
I thought that only dp[1][0] is changed to 10, but all dp[x][0] are 10(x