回答編集履歴
1
コードの修正(map.put)
test
CHANGED
@@ -68,13 +68,9 @@
|
|
68
68
|
|
69
69
|
Integer v = map.get(a[i][0]);
|
70
70
|
|
71
|
-
if (v == null)
|
71
|
+
if (v == null) v = 0;
|
72
72
|
|
73
|
-
map.put(a[i][0], 1);
|
74
|
-
|
75
|
-
else
|
76
|
-
|
77
|
-
|
73
|
+
map.put(a[i][0], v + 1);
|
78
74
|
|
79
75
|
}
|
80
76
|
|