c语言sscanf函数的用法是什么
254
2022-08-26
[leetcode] 1281. Subtract the Product and Sum of Digits of an Integer
Description
Given an integer number n, return the difference between the product of its digits and the sum of its digits.
Example 1:
Input: n = 234Output: 15 Explanation: Product of digits = 2 * 3 * 4 = 24 Sum of digits = 2 + 3 + 4 = 9 Result = 24 - 9 = 15
Example 2:
Input: n = 4421Output: 21Explanation: Product of digits = 4 * 4 * 2 * 1 = 32 Sum of digits = 4 + 4 + 2 + 1 = 11 Result = 32 - 11 = 21
Constraints:
1 <= n <= 10^5
分析
题目的意思是:把一个数的数字拆分开,求其乘积和数字求和的差值。思路也是很直接,先把数变成单个的数字,然后求乘积,求和相减就行了。这两个操作可以放到一个循环里面。
代码
class Solution: def subtractProductAndSum(self, n: int) -> int: t=n res1=1 res2=0 while(t>0): res1*=t%10 res2+=t%10 t=t//10 return res1-res2
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~