Skip to content

Commit 1d07d90

Browse files
committed
fix driver instance creation
1 parent 95e10c3 commit 1d07d90

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Solution.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ void run()throws Exception{
4141
int tests = i();
4242
for(int testId = 1; testId <= tests; testId++){
4343
out.write("Case #"+testId+": ");
44-
4544
int ans = 0;
4645
out.write(""+ans+"\n");
4746
}
@@ -136,7 +135,7 @@ private void closeResources(){
136135

137136
public static void main(String[] args) throws java.lang.Exception{
138137

139-
A driver = new A(true);
138+
Solution driver = new Solution(true);
140139
driver.run();
141140
driver.closeResources();
142141
}

0 commit comments

Comments
 (0)