Wins the Offer (Python variety of ideas to achieve): Do not do addition and subtraction, multiplication and division.

Wins the Offer (Python variety of ideas to achieve): Do not do addition and subtraction, multiplication and division.

65 Topic title: Do not do addition and subtraction, multiplication and division.

Problem-solving ideas: Python characteristics

class Solution:
    def Add(self, num1, num2):
        # write code here
        return sum([num1,num2])

 

Published 75 original articles · won praise 7 · views 40000 +

Guess you like

Origin blog.csdn.net/weixin_44151089/article/details/104549467