Explorar el Código

Add deque import to Social Graph solution (#147)

cclauss hace 7 años
padre
commit
ea262de564
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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):