gitextract_o39wik8g/ ├── .gitignore ├── README.md ├── week0/ │ ├── degrees/ │ │ ├── degrees.py │ │ ├── small/ │ │ │ ├── movies.csv │ │ │ ├── people.csv │ │ │ └── stars.csv │ │ └── util.py │ └── tictactoe/ │ ├── requirements.txt │ ├── runner.py │ └── tictactoe.py ├── week1/ │ ├── knights/ │ │ ├── logic.py │ │ └── puzzle.py │ └── minesweeper/ │ ├── minesweeper.py │ ├── requirements.txt │ └── runner.py ├── week2/ │ ├── heredity/ │ │ └── heredity.py │ └── pagerank/ │ └── pagerank.py ├── week3/ │ └── crossword/ │ ├── crossword.py │ ├── data/ │ │ ├── structure0.txt │ │ ├── structure1.txt │ │ ├── structure2.txt │ │ ├── words0.txt │ │ ├── words1.txt │ │ └── words2.txt │ └── generate.py ├── week4/ │ ├── nim/ │ │ ├── nim.py │ │ └── play.py │ └── shopping/ │ ├── shopping.csv │ └── shopping.py ├── week5/ │ └── traffic/ │ └── traffic.py └── week6/ ├── parser/ │ ├── parser.py │ └── sentences/ │ ├── 1.txt │ ├── 10.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ ├── 9.txt │ └── test.txt └── questions/ ├── corpus/ │ ├── artificial_intelligence.txt │ ├── machine_learning.txt │ ├── natural_language_processing.txt │ ├── neural_network.txt │ ├── probability.txt │ └── python.txt └── questions.py