Skip to content

Commit

Permalink
Project Euler 4
Browse files Browse the repository at this point in the history
  • Loading branch information
retronym committed Jul 26, 2010
1 parent 37fe64c commit 0ea2db9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/main/scala/zuse/euler/Problem4.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package zuse.euler

/**
* http://projecteuler.net/index.php?section=problems&id=4
*
* A palindromic number reads the same both ways. The largest palindrome made from the product
* of two 2-digit numbers is 9009 = 91 99.
*
* Find the largest palindrome made from the product of two 3-digit numbers.
*/
object Problem4 {
case class Result(x: Int, y: Int, product: Int)

def largestPalindrome: Result = {
error("TODO")
}
}

0 comments on commit 0ea2db9

Please sign in to comment.