Created
September 4, 2016 14:07
-
-
Save jiyeonseo/c3f511315a280d7155a9ba66638494be to your computer and use it in GitHub Desktop.
Solve Me First FP
This file contains 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
// 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