Leetcode 1281.整数的各位积和之差(Subtract the Product and Sum of Digits of an Integer)

Leetcode 1281.整数的各位积和之差

1 题目描述(Leetcode题目链接)

  给你一个整数 n,请你帮忙计算并返回该整数「各位数字之积」与「各位数字之和」的差。

输入:n = 234
输出:15 
解释:
各位数之积 = 2 * 3 * 4 = 24 
各位数之和 = 2 + 3 + 4 = 9 
结果 = 24 - 9 = 15
输入:n = 4421
输出:21
解释: 
各位数之积 = 4 * 4 * 2 * 1 = 32 
各位数之和 = 4 + 4 + 2 + 1 = 11 
结果 = 32 - 11 = 21

提示: 1 < = n < = 1 0 5 1 <= n <= 10^5 1<=n<=105

2 题解

  简单的算数题

class Solution:
    def subtractProductAndSum(self, n: int) -> int:
        s = 0
        p = 1
        while n:
            s += n%10
            p *= n%10
            n //= 10
        return p - s

你可能感兴趣的:(Leetcode,leetcode,算法)