HTMLify
Day 134
Views: 2 | Author: djdj
1 2 3 4 5 6 7 8 9 10 11 | class Solution(object): def addStrings(self, num1, num2): """ :type num1: str :type num2: str :rtype: str """ num1 = int(num1) num2 = int(num2) ans = str(num1 + num2) return ans |