2025-08-21 13:50:01 +0000 UTC
Find the Maximum Achievable Number
Categories:
Links
Code
class Solution:
def theMaximumAchievableX(self, num: int, t: int) -> int:
return num + (t * 2)
class Solution:
def theMaximumAchievableX(self, num: int, t: int) -> int:
return num + (t * 2)