HTMLify

LeetCode - Add Two Integers - Rust
Views: 178 | Author: abh
impl Solution {
    pub fn sum(num1: i32, num2: i32) -> i32 {
        return num1 + num2;
    }
}

Comments