From 756feee4e455058854720fdd9ffd095694bf5d41 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Tue, 6 Feb 2024 21:39:29 -0700 Subject: [PATCH] Clarified on OS path for the input file. --- spring24/week4/Challenge.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring24/week4/Challenge.java b/spring24/week4/Challenge.java index b112f51..033fb25 100644 --- a/spring24/week4/Challenge.java +++ b/spring24/week4/Challenge.java @@ -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 list = split(s); double result = calculate(list);