Created
December 2, 2015 07:41
-
-
Save DHager/1b26d2e47a1d71b94e49 to your computer and use it in GitHub Desktop.
Advent of Code Day 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://adventofcode.com/day/2 | |
from itertools import combinations | |
import operator | |
def wrapNeeded(dims): | |
sides = combinations(dims,2) | |
halfAreas = map(lambda (a,b): a*b, sides) | |
return sum(halfAreas)*2 + min(halfAreas) | |
def ribbonNeeded(dims): | |
dims = sorted(dims) | |
smallTwo = dims[0:2] | |
volume = reduce(operator.mul,dims,1) | |
return sum(smallTwo)*2 + volume | |
if __name__ == "__main__": | |
input = "" # Omitted | |
totalPaper = 0 | |
totalRibbon = 0 | |
for spec in input.split("\n"): | |
dims = [int(d) for d in spec.split("x")] | |
totalPaper += wrapNeeded(dims) | |
totalRibbon += ribbonNeeded(dims) | |
print "paper",totalPaper | |
print "ribbon",totalRibbon |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment