1HashMap<String, MutableInteger> efficientCounter = new HashMap<String, MutableInteger>();
2
3for (String a : sArr) {
4 MutableInteger initValue = new MutableInteger(1);
5 MutableInteger oldValue = efficientCounter.put(a, initValue);
6
7 if(oldValue != null){
8 initValue.set(oldValue.get() + 1);
9 }
10}