在解决 hackerrank 上的问题时,我发现由于逻辑错误,我的输出与正确答案不同。我重现了逻辑错误,以便以更好的方式解释情况。
HashMap<Integer[] , Integer> hm = new HashMap<>();
//both a and b have different hashcode
Integer[] a = {1, 1, 0, 0};
Integer[] b = {1, 1, 0, 0};
hm.put(a,1);
if (!hm.containsKey(b)) {
//key does not exists so, create new one
hm.put(b, 1);
}
else {
//key does exists so, put its value = value + 1
hm.put(b, hm.get(b)+1);
}
这里 hm.containsKey(b) 返回 false,但如果它返回 true,我的输出将与正确的输出匹配。由于 a 和 b 的内容相等,如何使 containsKey(b) 返回 true ?
慕的地10843
相关分类