import java.util.*; public class Solution { public int MoreThanHalfNum_Solution(int[] array) { HashMap<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < array.length; i++) { if (!map.containsKey(array[i])) { map.put(array[i], ...