HTMLify
LeetCode - Add Two Integers - Scala
Views: 391 | Author: abh
object Solution {
def sum(num1: Int, num2: Int): Int = {
return num1 + num2;
}
}
Comments

My first ever code written in Scala :)
@abh/lc/2235.rb - My solution for this problem in Ruby (first code)
Reply(Mention)