This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
登録
サインイン
jeremy
/
system-design-primer
同期ミラー
https://github.com/donnemartin/system-design-primer
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
Wiki
ソースを参照
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):