【每日一题Day299】LC2235两整数相加

两整数相加【LC2235】

给你两个整数 num1num2,返回这两个整数的和。

  • 实现

    class Solution {
        public int sum(int num1, int num2) {
            return num1 + num2;
        }
    }
    
    • 复杂度
      • 时间复杂度: O ( 1 ) \mathcal{O}(1) O(1)
      • 空间复杂度: O ( 1 ) \mathcal{O}(1) O(1)

你可能感兴趣的:(每日一题,leetcode)