We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6b7278 commit a458146Copy full SHA for a458146
commands/printcase.go
@@ -46,7 +46,6 @@ func GetTestCase(egorMeta config.EgorMeta, id int) *TestCaseIO {
46
47
func PrintTestCaseInput(testCase *TestCaseIO) {
48
color.Green("Input:")
49
- color.Green("========================================================")
50
file, err := config.OpenFileFromPath(testCase.InputPath)
51
if err != nil {
52
color.Red("Failed to read test case input")
@@ -61,7 +60,6 @@ func PrintTestCaseInput(testCase *TestCaseIO) {
61
60
62
func PrintTestCaseOutput(testCase *TestCaseIO) {
63
color.Green("Output:")
64
65
file, err := config.OpenFileFromPath(testCase.OutputPath)
66
67
0 commit comments