m.put("A", al);
m.put("B", al1);
m.put("C", al2);
I want to compare all the values of this HashMap. This is the HashMap with the String type keys and ArrayList<Integer> type values.
I don't want to use other collection type.
Integer a[] = { 1, 2, 3, 4 };
Integer b[] = { 1, 2, 3, 4 };
Integer c[] = { 9, 5, 3, 7 };
Integer d[] = { 1, 2, 3, 2};
List<Integer> l = Arrays.asList(a);
List<Integer> m = Arrays.asList(b);
List<Integer> n = Arrays.asList(c);
List<Integer> o = Arrays.asList(d);
Map<String, List<Integer>> m1 = new HashMap<String, List<Integer>();
m1.put("A", l);
m1.put("B", m);
m1.put("C", n);
m1.put("D", o);
This is my hashmap m1, and each key has an ArrayList of elements, as we know key "A" and Key "B" both have same elements A- {1,2,3,4} and B- {1,2,3,4} and rest of other Keys have different-different elements. so what i want is, to get all the keys having same elements. for example Key A and Key B both have same elements so i want to print A and B. and the Size should be same for all the Keys here size is 4 for all the hasmap keys