Skip to content
LC-2457 Medium LeetCode

2457. Minimum Addition to Make Integer Beautiful

Read the full problem statement on LeetCode.
Difficulty: medium Acceptance: 38% Topics: Math, Greedy
View full problem on LeetCode
Reference solution (spoiler · python)
# Time:  O(logn)
# Space: O(1)

# greedy
class Solution(object):
    def makeIntegerBeautiful(self, n, target):
        """
        :type n: int
        :type target: int
        :rtype: int
        """
        total, m = 0, n
        while m:
            total += m%10
            m //= 10
        m, l = n, 0
        while total > target:
            while True:
                total -= m%10
                m //= 10
                l += 1
                if m%10 != 9:
                    break
            total += 1
            m += 1
        return m*10**l-n

Solution from kamyu104/LeetCode-Solutions · MIT

Similar questions