Skip to content

Instantly share code, notes, and snippets.

@kittinan
Last active August 29, 2015 13:57
Show Gist options
  • Save kittinan/9348522 to your computer and use it in GitHub Desktop.
Save kittinan/9348522 to your computer and use it in GitHub Desktop.
4. Largest palindrome product PHP Solve
<?php
/*
* projecteuler.net
* 4. Largest palindrome product PHP Solve
*/
$max = 0;
$output = null;
for ($i = 100; $i < 1000; $i++ ) {
for ($j = 100; $j < 1000; $j++) {
$mul = $i*$j;
if ($mul == strrev($mul) && $mul > $max) {
$max = $mul;
}
}
}
echo "$max\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment