├── .gitignore ├── README.md ├── ps0 ├── MIT6_0001F16_Getting_Start.pdf ├── MIT6_0001F16_ProblemSet0.pdf ├── pkgtest.py └── ps0.py ├── ps1 ├── MIT6_0001F16_ps1.pdf ├── ps1a.py ├── ps1b.py └── ps1c.py ├── ps2 ├── MIT6_0001F16_Pset2.pdf ├── hangman.py └── words.txt ├── ps3 ├── MIT6_0001F16_ProblemSet3.pdf ├── ps3.py ├── test_ps3.py └── words.txt ├── ps4 ├── MIT6_0001F16_Pset4.pdf ├── ps4a.py ├── ps4b.py ├── ps4c.py ├── story.txt └── words.txt └── ps5 ├── MIT6_0001F16_ps5.pdf ├── feedparser.py ├── mtTkinter.py ├── project_util.py ├── ps5.py ├── ps5_test.py └── triggers.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/README.md -------------------------------------------------------------------------------- /ps0/MIT6_0001F16_Getting_Start.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps0/MIT6_0001F16_Getting_Start.pdf -------------------------------------------------------------------------------- /ps0/MIT6_0001F16_ProblemSet0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps0/MIT6_0001F16_ProblemSet0.pdf -------------------------------------------------------------------------------- /ps0/pkgtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps0/pkgtest.py -------------------------------------------------------------------------------- /ps0/ps0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps0/ps0.py -------------------------------------------------------------------------------- /ps1/MIT6_0001F16_ps1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps1/MIT6_0001F16_ps1.pdf -------------------------------------------------------------------------------- /ps1/ps1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps1/ps1a.py -------------------------------------------------------------------------------- /ps1/ps1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps1/ps1b.py -------------------------------------------------------------------------------- /ps1/ps1c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps1/ps1c.py -------------------------------------------------------------------------------- /ps2/MIT6_0001F16_Pset2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps2/MIT6_0001F16_Pset2.pdf -------------------------------------------------------------------------------- /ps2/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps2/hangman.py -------------------------------------------------------------------------------- /ps2/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps2/words.txt -------------------------------------------------------------------------------- /ps3/MIT6_0001F16_ProblemSet3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps3/MIT6_0001F16_ProblemSet3.pdf -------------------------------------------------------------------------------- /ps3/ps3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps3/ps3.py -------------------------------------------------------------------------------- /ps3/test_ps3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps3/test_ps3.py -------------------------------------------------------------------------------- /ps3/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps3/words.txt -------------------------------------------------------------------------------- /ps4/MIT6_0001F16_Pset4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/MIT6_0001F16_Pset4.pdf -------------------------------------------------------------------------------- /ps4/ps4a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/ps4a.py -------------------------------------------------------------------------------- /ps4/ps4b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/ps4b.py -------------------------------------------------------------------------------- /ps4/ps4c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/ps4c.py -------------------------------------------------------------------------------- /ps4/story.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/story.txt -------------------------------------------------------------------------------- /ps4/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps4/words.txt -------------------------------------------------------------------------------- /ps5/MIT6_0001F16_ps5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/MIT6_0001F16_ps5.pdf -------------------------------------------------------------------------------- /ps5/feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/feedparser.py -------------------------------------------------------------------------------- /ps5/mtTkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/mtTkinter.py -------------------------------------------------------------------------------- /ps5/project_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/project_util.py -------------------------------------------------------------------------------- /ps5/ps5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/ps5.py -------------------------------------------------------------------------------- /ps5/ps5_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/ps5_test.py -------------------------------------------------------------------------------- /ps5/triggers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sturrion/MIT_OCW_6-0001-introduction-to-computer-science-and-programming-in-python-fall-2016/HEAD/ps5/triggers.txt --------------------------------------------------------------------------------