HTMLify
LeetCode - Find the Maximum Achievable Number - Python
Views: 179 | Author: abh
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)