HTMLify

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

Comments