Solutions for:
- Midterm and final exam problems from the 6.0001 Advanced Standing Exam
course on
MITx
(located in the
/mitx
folder)- You must have MIT certificates installed to access the exam.
- Problem
sets
from the MIT OCW 6.0001
course
(located in the
/ocw
folder)
Prerequisites: Python 3.5 or greater
Clone the repository:
$ git clone https://github.com/synicalsyntax/6.0001.git path/to/6.0001
Install dependencies with pip after navigating to the repository directory:
$ cd path/to/6.0001
$ pip install -r requirements.txt
- The code attempts to follow the 6.0001 Style Guide as closely as possible.
- Problem set code (excludes test suites and utility modules) follows the PEP 8 specification (linted with Flake8). As a result, some helper methods and docstrings have been modified to fit PEP 8 standards (e.g. maximum line length).
- Docstrings for self-implemented methods and classes follow the PEP 287 specification (reST format). The content for docstrings initially implemented by the instructor(s) has not been modified.
Please create an issue in the GitHub issue tracker for any bug reports, suggestions, or other comments.