# @lc app=leetcode id=2769 lang=python # # [2769] Find the Maximum Achievable Number # # @lc code=start class Solution(object): def theMaximumAchievableX(self, num, t): """ :type num: int :type t: int :rtype: int """ return num + t * 2 # @lc code=end 0 comments on ...