Last active
December 17, 2015 00:10
-
-
Save hwiorn/5518690 to your computer and use it in GitHub Desktop.
euler 4번 문제
This file contains hidden or 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
println ((for(a <- (999 to 100 by -1); b <- (999 to 100 by -1); if((a * b).toString.reverse == (a * b).toString)) yield (a*b)).sorted.last) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment