This website works better with JavaScript
Home
Explore
Help
Register
Sign In
jeremy
/
system-design-primer
mirror of
https://github.com/donnemartin/system-design-primer
Watch
1
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Add deque import to Social Graph solution (
#147
)
cclauss
7 years ago
parent
b156e48e4b
commit
ea262de564
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
solutions/system_design/social_graph/social_graph_snippets.py
+ 2
- 0
solutions/system_design/social_graph/social_graph_snippets.py
View File
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
+from collections import deque
+
class Graph(object):