2025-08-21 13:50:01 +0000 UTC

Find the Maximum Achievable Number

Code

class Solution:
    def theMaximumAchievableX(self, num: int, t: int) -> int:
        return num + (t * 2)