from collections import defaultdict
graph = defaultdict(list)
for x in graph:
...
런타임 에러 발생
원인: defaultdict는 존재하지 않는 키 조회 시 오류가 생기지 않게 하기 위해 항상 디폴트를 생성함.
from collections import defaultdict
graph = defaultdict(list)
for x in list(graph):
...
해결 방법: 새로운 복사본 생성
graph -> list(graph)
'Algorithm > Python' 카테고리의 다른 글
[python/leetcode]network delay time/dijkstra/heapq (0) | 2021.04.07 |
---|---|
[python/leetcode]course schedule/tree/dfs (0) | 2021.04.07 |
[파이썬/프로그래머스][1차] 뉴스 클러스터링/Counter를 이용한 교집합, 합집합 (0) | 2021.04.03 |
[파이썬/프로그래머스]배달/다익스트라/우선순위큐/가지치기!!!!!!!!! (0) | 2021.04.03 |
[파이썬/프로그래머스]점프와 순간이동 (0) | 2021.04.03 |