This is a python implementation of an Intcode VM.
This repo also contains several solutions for the Advent of Code 2019 along with the Intcode VM.
This project assumes the user has some python knowledge. To run any of the included solutions, simply replace the main function in main.py with the function for a given solution. For example:
if __name__ == '__main__':
run_day7_part1() # change this line to select which solution to run.
passDocumentation is generated using Sphinx.
Building the documentation is easy.
Run the command make html in the documentation folder.
Run the command make.bat html in the documentation folder. Use ./make.bat html instead if you're using powershell.