Skip to content

Instantly share code, notes, and snippets.

@cpcallen
Created December 22, 2016 22:55
Show Gist options
  • Save cpcallen/f4d8a95a5ec73214d398d6ec7943907d to your computer and use it in GitHub Desktop.
Save cpcallen/f4d8a95a5ec73214d398d6ec7943907d to your computer and use it in GitHub Desktop.
Example input for Advent of Code 2016, day 22, part 2
# A 5x2 server farm, with the following initial capacities:
#
# 5/10 5/10 2/10 99/99 2/10
# 5/10 5/10 2/10 2/10 2/10
#
# Can be solved in eight moves.
#
/dev/grid/node-x0-y0 10T 5T 5T 50%
/dev/grid/node-x0-y1 10T 5T 5T 50%
/dev/grid/node-x1-y0 10T 5T 5T 50%
/dev/grid/node-x1-y1 10T 5T 5T 50%
/dev/grid/node-x2-y0 10T 2T 8T 20%
/dev/grid/node-x2-y1 10T 2T 8T 20%
/dev/grid/node-x3-y0 99T 99T 0T 100%
/dev/grid/node-x3-y1 10T 2T 8T 20%
/dev/grid/node-x4-y0 10T 2T 8T 20%
/dev/grid/node-x4-y1 10T 2T 8T 20%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment