LC 1281.Subtract the Product and Sum of Digits of an Integer
题目描述
这是 LeetCode
上的 1281.
整数的各位积和之差 ,难度为简单。
给你一个整数
n
,请你帮忙计算并返回该整数「各位数字之积」与「各位数字之和」的差。
示例 1:
1 |
|
示例 2:
1 |
|
提示:
1 <= n <= 10^5
解答
方法一:模拟
根据题意每次对 n
取余求出每个位数并相应地加到总和,乘到乘积中即可,最后返回差值。
1 |
|
时间复杂度:\(O(\log n)\),其中
n
为整数n
的大小。空间复杂度:\(O(1)\)。
每题一图
LC 1281.Subtract the Product and Sum of Digits of an Integer
https://chen-huaneng.github.io/2023/12/11/2023-12-11-2023-12-11-lc-1281/