We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 845a84a commit 89ab685Copy full SHA for 89ab685
2769-find-the-maximum-achievable-number.js
@@ -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