Skip to content

Commit 89ab685

Browse files
authored
Create 2769-find-the-maximum-achievable-number.js
1 parent 845a84a commit 89ab685

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* @param {number} num
3+
* @param {number} t
4+
* @return {number}
5+
*/
6+
const theMaximumAchievableX = function(num, t) {
7+
return 2 * t + num
8+
};

0 commit comments

Comments
 (0)