はじめに
前回
投稿忘れてました。すみません。
#20
考えたこと
道の両辺の町をカウントすればいいので、collectionsを使う
import collections
n, m = map(int,input().split())
road = []
for _ in range(m):
s = list(map(int,input().split()))
road.append(s[0])
road.append(s[1])
c = collections.Counter(road)
for i in range(1,n+1):
print(c[i])
collectionsはlistと違って1から始まることに注意
まとめ
ねむいので寝ます。おやすみなさい