回答編集履歴

1

コードの修正(map.put)

2021/12/13 18:54

投稿

kazuma-s
kazuma-s

スコア8224

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
- map.put(a[i][0], v + 1);
73
+ map.put(a[i][0], v + 1);
78
74
 
79
75
  }
80
76