1281. Subtract the Product and Sum of Digits of an Integer ¶ Time: Space: C++JavaPython 1 2 3 4 5 6 7 8 9 10 11 12 13 14class Solution { public: int subtractProductAndSum(int n) { int prod = 1; int summ = 0; for (; n > 0; n /= 10) { prod *= n % 10; summ += n % 10; } return prod - summ; } }; 1 2 3 4 5 6 7 8 9 10 11 12 13class Solution { public int subtractProductAndSum(int n) { int prod = 1; int summ = 0; for (; n > 0; n /= 10) { prod *= n % 10; summ += n % 10; } return prod - summ; } } 1 2 3 4 5 6 7 8 9 10 11class Solution: def subtractProductAndSum(self, n: int) -> int: prod = 1 summ = 0 while n > 0: prod *= n % 10 summ += n % 10 n //= 10 return prod - summ