Clarified on OS path for the input file.

This commit is contained in:
Joshua Ashton
2024-02-06 21:39:29 -07:00
parent 9cb34501b4
commit 756feee4e4
+1 -1
View File
@@ -112,7 +112,7 @@ public class Challenge {
// Test driver for the three coding challenges.
public static void main(String[] args) {
File f = new File("Example.txt");
File f = new File("Example.txt"); // TODO: Identify the correct path for your OS and IDE/editor.
String s = readFile(f);
ArrayList<String> list = split(s);
double result = calculate(list);