Submitted solutions need to conform to the following standards:
- Code needs to meet pep8 standards. If your editor of choice doesn't check your code for you, you can
pip install pep8, then runpep8 <filename>.pyfrom the command line to check your code meets pep8 standards. - Documentation needs to meet pep257 standards. You can
pip install pep257, then runpep257 <filename>.pyfrom the command line to check your documentation meets pep257 standards. - Docstrings need to conform to NumPy/SciPy/sklearn conventions.
- Solutions should be submitted in a module with a filename that matches that section of questions. For example, solutions for the
General Programmingquestions should be submitted in a file namedgeneral_programming.py.