This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng ký
Đăng nhập
jeremy
/
system-design-primer
mirror of
https://github.com/donnemartin/system-design-primer
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
Add deque import to Social Graph solution (
#147
)
cclauss
7 năm trước cách đây
mục cha
b156e48e4b
commit
ea262de564
1 tập tin đã thay đổi
với
2 bổ sung
và
0 xóa
Split View
Hiển thị tình trạng sai khác
2
0
solutions/system_design/social_graph/social_graph_snippets.py
+ 2
- 0
solutions/system_design/social_graph/social_graph_snippets.py
Xem Tập Tin
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
+from collections import deque
+
class Graph(object):