This website works better with JavaScript
Etusivu
Tutki
Apua
Rekisteröidy
Kirjaudu sisään
jeremy
/
system-design-primer
peilaus alkaen
https://github.com/donnemartin/system-design-primer
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Selaa lähdekoodia
Add deque import to Social Graph solution (
#147
)
cclauss
7 vuotta sitten
vanhempi
b156e48e4b
commit
ea262de564
1 muutettua tiedostoa
jossa
2 lisäystä
ja
0 poistoa
Jaettu näkymä
Näytä diff tilastot
2
0
solutions/system_design/social_graph/social_graph_snippets.py
+ 2
- 0
solutions/system_design/social_graph/social_graph_snippets.py
Näytä tiedosto
@@ -1,4 +1,6 @@
# -*- coding: utf-8 -*-
+from collections import deque
+
class Graph(object):