LintCode刷起来(一)
LintCode刷起来(一)
1. A + B 问题
方法一:
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
方法二:
class Solution:
原创
2021-07-15 00:22:49 ·
948 阅读 ·
0 评论