From 4dea10ad2543ef1eadfecf9e416b09966a10b0a4 Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Sat, 9 Jul 2022 13:28:51 -0400 Subject: [PATCH] Fix coupon collector --- eval.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval.html b/eval.html index f339867..5f461d0 100644 --- a/eval.html +++ b/eval.html @@ -142,7 +142,7 @@ surface_area_of_cylinder = function(r, h) { } coupon_collector = function(coupons) { // - return coupons*Math.log(coupons) + 0.577215*coupon + 0.5; + return coupons*Math.log(coupons) + 0.577215*coupons + 0.5; } -- 2.47.3