Skip to content

Instantly share code, notes, and snippets.

@phroggyy
Created December 2, 2015 09:02
Show Gist options
  • Save phroggyy/485b12ffbc82cde400c3 to your computer and use it in GitHub Desktop.
Save phroggyy/485b12ffbc82cde400c3 to your computer and use it in GitHub Desktop.
<?php
array_walk($x=file('i'),function(&$g) {
$g=explode('x', $g);
sort($g, SORT_NUMERIC);
});
$p = $r = 0;
foreach ($x as $g) {
$p += 2*($g[0]*$g[1] + $g[0]*$g[2] + $g[1]*$g[2]) + $g[0]*$g[1];
$r += 2*($g[0]+$g[1])+array_product($g);
}
echo "paper: $p\nribbon: $r\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment