This website works better with JavaScript
صفحهٔ اصلی
گشتوگذار
راهنما
ثبت نام
ورود
jeremy
/
system-design-primer
mirrorاز
https://github.com/donnemartin/system-design-primer
دنبال کردن
1
ستاره دار
0
انشعاب
0
پروندهها
مشکلات
0
ویکی
فهرست منبع
Add deque import to Social Graph solution (
#147
)
cclauss
7 سال پیش
والد
b156e48e4b
کامیت
ea262de564
1فایلهای تغییر یافته
به همراه
2 افزوده شده
و
0 حذف شده
مشاهده تقسیم شده
نمایش آمار تفاوت ها
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):