Skip to content

Commit a08f41b

Browse files
committed
Remove unused code
1 parent 0237d86 commit a08f41b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

backend/code-execution-service/src/controllers/codeExecutionControllers.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,6 @@ export const executeCode = async (req: Request, res: Response) => {
4343
const { inputs: stdinList, outputs: expectedResultList } =
4444
qnsResponse.data.question;
4545

46-
// Extract test cases from input and output files
47-
// const testCases = await testCasesApi(
48-
// testcaseInputFileUrl,
49-
// testcaseOutputFileUrl
50-
// );
51-
52-
// const stdinList: string[] = testCases.input;
53-
// const expectedResultList: string[] = testCases.output;
54-
5546
if (stdinList.length !== expectedResultList.length) {
5647
res.status(400).json({
5748
message: ERROR_NOT_SAME_LENGTH_MESSAGE,

0 commit comments

Comments
 (0)