Alec Doran-Twyford Stath Rose
Problem statement and input data Each of the data sets represents a separate instance of the problem. The score of your team will be the sum of the best scores on individual data sets.
Remember that only correctly formed teams can submit solutions. You can go to My Team page to verify the status of your team.
Should only need to do this if it your 1st time with Python and virtual enviroments
sudo apt-get install python-pip python-dev build-essential
sudo pip install virtualenv virtualenvwrapper
sudo pip install --upgrade pip
printf '\n%s\n%s\n%s' '# virtualenv' 'export WORKON_HOME=~/virtualenvs' \
'source /usr/local/bin/virtualenvwrapper.sh' >> ~/.bashrc
source ~/.bashrc
mkdir -p $WORKON_HOME
git clone https://github.com/hackthenight/hashcode-2018-tabsnotspaces.git
cd hashcode-2018-tabsnotspaces
virtualenv virtualenv-hashcode-2018
source virtualenv-hashcode-2018/bin/activate
pip install -r requirements.txt
git clone https://github.com/hackthenight/hashcode-2018-tabsnotspaces.git
cd hashcode-2018-tabsnotspaces
mkvirtualenv hashcode-2018
workon hashcode-2018
pip install -r requirements.txt