Просмотр исходного кода

Add deque import to Social Graph solution (#147)

cclauss 7 лет назад
Родитель
Сommit
ea262de564
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      solutions/system_design/social_graph/social_graph_snippets.py

+ 2 - 0
solutions/system_design/social_graph/social_graph_snippets.py

@@ -1,4 +1,6 @@
 # -*- coding: utf-8 -*-
+from collections import deque
+
 
 class Graph(object):