Skip to content

Files

Latest commit

 

History

History
14 lines (12 loc) · 300 Bytes

Question_2769.md

File metadata and controls

14 lines (12 loc) · 300 Bytes

LeetCode Records - Question 2769 Find the Maximum Achievable Number

Attempt 1:

class Solution {
    public int theMaximumAchievableX(int num, int t) {
        return num + t * 2;
    }
}
  • Runtime: 1 ms (Beats: 100.00%)
  • Memory: 41.09 MB (Beats: 85.99%)