From c4727e7dc8ebb5f9c5176c3ea3eac9c036947311 Mon Sep 17 00:00:00 2001 From: Jesse Sigal Date: Tue, 4 Jun 2024 16:50:01 +0100 Subject: [PATCH] Update `product_early` description Make it clear that all languages so far use a linked list of numbers. --- descriptions/product_early/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/descriptions/product_early/README.md b/descriptions/product_early/README.md index 61b2c58..d007501 100644 --- a/descriptions/product_early/README.md +++ b/descriptions/product_early/README.md @@ -1,6 +1,6 @@ # Product early -Compute the product of a list of numbers and abort early if encountering a `0` +Compute the product of a linked list of numbers and abort early if encountering a `0` in a non-tail recursive way. Run this on a descending list of 1000 numbers ending in a `0`. Iterate this `n` times.