Leetcode Daily Question
@leetcodeDailyQuestionChannel
2.39K
subscribers
517
files
2.59K
links
Why are you asking me to do Leetcode for this CSS job?
Download Telegram
Join
Leetcode Daily Question
2.39K subscribers
Leetcode Daily Question
leetcode.cn
2026-07-25
🟢
3536.maximum-product-of-two-digits
🏷️
Tags
#math
#sorting
Telegraph
maximum-product-of-two-digits
给定一个正整数 n。 返回 任意两位数字 相乘所得的 最大 乘积。 注意:如果某个数字在 n 中出现多次,你可以多次使用该数字。 示例 1: 输入: n = 31 输出: 3 解释:
来源
答案
Leetcode Daily Question
leetcode.com
2026-07-25
🟢
3536.maximum-product-of-two-digits
🏷️
Tags
#math
#sorting
Telegraph
maximum-product-of-two-digits
You are given a positive integer n. Return the maximum product of any two digits in n. Note: You may use the same digit twice if it appears more than once in n. Example 1: Input: n = 31 Output: 3 Explanation:
Source
Solution