HTMLify
LeetCode - Find the Maximum Achievable Number - Python
Views: 343 | Author: abh
1 2 3 | class Solution: def theMaximumAchievableX(self, num: int, t: int) -> int: return num + (t*2) |
1 2 3 | class Solution: def theMaximumAchievableX(self, num: int, t: int) -> int: return num + (t*2) |