Skip to content

Instantly share code, notes, and snippets.

@hwiorn
Last active December 16, 2015 11:29
Show Gist options
  • Save hwiorn/5428243 to your computer and use it in GitHub Desktop.
Save hwiorn/5428243 to your computer and use it in GitHub Desktop.
euler 1번문제
println((0 until 1000).filter(x => (x % 3 == 0) || (x % 5 == 0)).sum)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment