Skip to content

Instantly share code, notes, and snippets.

@outsideris
Last active December 16, 2015 11:09
Show Gist options
  • Save outsideris/5425670 to your computer and use it in GitHub Desktop.
Save outsideris/5425670 to your computer and use it in GitHub Desktop.
euler for PiS study
package kr.ne.outsider
object p001 extends App {
val source = 1 until 1000
val result = source.filter(x => x % 3 ==0 || x % 5 == 0).sum
println(result) //233168
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment