This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Üye Ol
Giriş Yap
jeremy
/
system-design-primer
şunun yansıması
https://github.com/donnemartin/system-design-primer
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Wiki
Kaynağa Gözat
Add deque import to Social Graph solution (
#147
)
cclauss
7 yıl önce
ebeveyn
b156e48e4b
işleme
ea262de564
1 değiştirilmiş dosya
ile
2 ekleme
ve
0 silme
Görünümü Böl
Farklılık Durumunu Göster
2
0
solutions/system_design/social_graph/social_graph_snippets.py
+ 2
- 0
solutions/system_design/social_graph/social_graph_snippets.py
Dosyayı Görüntüle
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
+from collections import deque
+
class Graph(object):