質問編集履歴
1
インデントが反映されていなかったので見やすくしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,15 +12,15 @@
|
|
12
12
|
|
13
13
|
for pattern in array:
|
14
14
|
|
15
|
-
if pattern in count: ...①
|
15
|
+
/ if pattern in count: ...①
|
16
16
|
|
17
|
-
count[pattern] += 1...②
|
17
|
+
/ count[pattern] += 1...②
|
18
18
|
|
19
|
-
else:
|
19
|
+
/ else:
|
20
20
|
|
21
|
-
count[pattern] = 1...③
|
21
|
+
/ count[pattern] = 1...③
|
22
22
|
|
23
|
-
print(count)
|
23
|
+
/ print(count)
|
24
24
|
|
25
25
|
|
26
26
|
|