gitextract_1nxpln8x/ ├── .gitattributes ├── .github/ │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README-ja.md ├── README-zh-Hans.md ├── README-zh-TW.md ├── README.md ├── TRANSLATIONS.md ├── epub-metadata.yaml ├── generate-epub.sh ├── resources/ │ ├── flash_cards/ │ │ ├── OO Design.apkg │ │ ├── System Design Exercises.apkg │ │ └── System Design.apkg │ └── study_guide.graffle └── solutions/ ├── object_oriented_design/ │ ├── call_center/ │ │ ├── __init__.py │ │ ├── call_center.ipynb │ │ └── call_center.py │ ├── deck_of_cards/ │ │ ├── __init__.py │ │ ├── deck_of_cards.ipynb │ │ └── deck_of_cards.py │ ├── hash_table/ │ │ ├── __init__.py │ │ ├── hash_map.ipynb │ │ └── hash_map.py │ ├── lru_cache/ │ │ ├── __init__.py │ │ ├── lru_cache.ipynb │ │ └── lru_cache.py │ ├── online_chat/ │ │ ├── __init__.py │ │ ├── online_chat.ipynb │ │ └── online_chat.py │ └── parking_lot/ │ ├── __init__.py │ ├── parking_lot.ipynb │ └── parking_lot.py └── system_design/ ├── mint/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── __init__.py │ ├── mint.graffle │ ├── mint_basic.graffle │ ├── mint_mapreduce.py │ └── mint_snippets.py ├── pastebin/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── __init__.py │ ├── pastebin.graffle │ ├── pastebin.py │ └── pastebin_basic.graffle ├── query_cache/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── __init__.py │ ├── query_cache.graffle │ ├── query_cache_basic.graffle │ └── query_cache_snippets.py ├── sales_rank/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── __init__.py │ ├── sales_rank.graffle │ ├── sales_rank_basic.graffle │ └── sales_rank_mapreduce.py ├── scaling_aws/ │ ├── README-zh-Hans.md │ ├── README.md │ └── scaling_aws.graffle ├── social_graph/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── __init__.py │ ├── social_graph.graffle │ ├── social_graph_basic.graffle │ └── social_graph_snippets.py ├── template/ │ └── template.graffle ├── twitter/ │ ├── README-zh-Hans.md │ ├── README.md │ ├── twitter.graffle │ └── twitter_basic.graffle └── web_crawler/ ├── README-zh-Hans.md ├── README.md ├── __init__.py ├── web_crawler.graffle ├── web_crawler_basic.graffle ├── web_crawler_mapreduce.py └── web_crawler_snippets.py