This was asked today in interview any pointer.
"Design a unique hash function for every tweet in Twitter"
Example Map data = new HashMap(); data.put("a","America"); data.put("a","Africa"); data.put("b","Bangladesh");
Need to have both "America" and "Africa" as value against key "a". Is there any mechanism to achieve this scenario.