You are viewing a single comment's thread. Return to all comments →
Scala Code:
object SolveMeFirstFP { def main(args: Array[String]): Unit = { println(io.Source.stdin.getLines().take(2).map(_.toInt).filter(x=> x>=1 && x<=1000).sum) } }
Seems like cookies are disabled on this browser, please enable them to open this website
Solve Me First FP
You are viewing a single comment's thread. Return to all comments →
Scala Code: