File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public static void main(String[] args) throws IOException{
23
23
ArrayList <String > patternList = new ArrayList <String >();
24
24
patternList .addAll (possiblePatterns );
25
25
26
- final String sequentialFilePath = "sequential.txt" ;
26
+ final String sequentialFilePath = "output/ sequential.txt" ;
27
27
System .out .print ("\n Writing sequential output to [" + sequentialFilePath + "]..." );
28
28
Collections .sort (patternList );
29
29
BufferedWriter sequentialWriter = new BufferedWriter (new FileWriter (sequentialFilePath ));
@@ -32,7 +32,7 @@ public static void main(String[] args) throws IOException{
32
32
sequentialWriter .close ();
33
33
System .out .println ("Done" );
34
34
35
- final String shuffledFilePath = "shuffled.txt" ;
35
+ final String shuffledFilePath = "output/ shuffled.txt" ;
36
36
System .out .print ("\n Writing shuffled output to [" + shuffledFilePath + "]..." );
37
37
Collections .shuffle (patternList );
38
38
BufferedWriter shuffledWriter = new BufferedWriter (new FileWriter (shuffledFilePath ));
You can’t perform that action at this time.
0 commit comments