You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/leetCodeExecutor.ts
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,17 @@ class LeetCodeExecutor implements Disposable {
115
115
}
116
116
}
117
117
118
+
/**
119
+
* This function returns solution of a problem identified by input
120
+
*
121
+
* @remarks
122
+
* Even though this function takes the needTranslation flag, it is important to note that as of vsc-leetcode-cli 2.8.0, leetcode-cli doesn't support querying solution on CN endpoint yet. So this flag doesn't have any effect right now.
123
+
*
124
+
* @param input - parameter to pass to cli that can identify a problem
125
+
* @param language - the source code language of the solution desired
126
+
* @param needTranslation - whether or not to use endPoint translation on solution query
0 commit comments