import java.util.*; public class Solution { public int findMode (int[] weightsA, int[] weightsB) { final int m = weightsA.length, n = weightsB.length; int[] combined = new int[m + n]; System.arraycopy(weightsA, 0, combined, 0, m); System.arraycopy(weightsB, 0, c...