HTMLify

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

Comments

abh 2023-11-02 07:14

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