Skip to content

Instantly share code, notes, and snippets.

@hwiorn
Last active December 17, 2015 00:10
Show Gist options
  • Save hwiorn/5518690 to your computer and use it in GitHub Desktop.
Save hwiorn/5518690 to your computer and use it in GitHub Desktop.
euler 4번 문제
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