commit 621c531824bbfdf326c1c129cd2296fb05be21a7
parent ce2777308aac33df83c0371bed66a57b772174a1
Author: Eamon Caddigan <eamon.caddigan@gmail.com>
Date: Wed, 1 Dec 2021 19:14:02 -0500
Comment edit
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/day01_part1.py b/day01_part1.py
@@ -4,7 +4,7 @@ stream of numbers and counting the number of times that an item in the stream
is greater than the preceding element."""
# As I work through these problems, I will often decide whether I want to use a
-# pure Python approach, or whether I want to use numpy/scipy. I feel like I
+# pure Python approach, or whether I want to use numpy/pandas. I feel like I
# have more familiarity with the language in general than these libraries, so
# I'm going to lean on them more heavily than might be necessary. For instance,
# I could make a `lag` iterator and `zip` the original stream with its lagged