Skip to content

Commit 1f3d8d2

Browse files
committed
Added extra output to submission
1 parent 3b8c05c commit 1f3d8d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autoload/leetcode.vim

+2-1
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,8 @@ function! s:FormatResult(result_) abort
10001000
endif
10011001

10021002
call extend(output, s:FormatSection('Error', result['error'], 2))
1003-
call extend(output, s:FormatSection('Standard Output', result['stdout'], 2))
1003+
call extend(output, s:FormatSection('Output', result['stdout'], 2))
1004+
call extend(output, s:FormatSection('Standard Output', result['code_output'], 2))
10041005

10051006
call extend(output, s:FormatSection('Input', result['testcase'], 3))
10061007
call extend(output, s:FormatSection('Actual Answer', result['answer'], 3))

0 commit comments

Comments
 (0)