Friday, August 6, 2021

LintCode 1 · A + B Problem.py

class Solution:
"""
@param a: An integer
@param b: An integer
@return: The sum of a and b
"""
def aplusb(self, a, b):
# write your code here
return a + b

No comments:

Post a Comment