Skip to content

Instantly share code, notes, and snippets.

@jiyeonseo
Created September 4, 2016 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jiyeonseo/c3f511315a280d7155a9ba66638494be to your computer and use it in GitHub Desktop.
Save jiyeonseo/c3f511315a280d7155a9ba66638494be to your computer and use it in GitHub Desktop.
Solve Me First FP
// https://www.hackerrank.com/challenges/fp-solve-me-first
object Solution {
def main(args: Array[String]) {
println(io.Source.stdin.getLines().take(2).map(_.toInt).sum)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment