From 3b74b69d9f4aa9207049ae62a84e579c3c3b409e Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Tue, 23 Sep 2025 18:21:53 +0300 Subject: [PATCH] fix the instruction for the test func for iterate_f --- testing_project/test_logistic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing_project/test_logistic.py b/testing_project/test_logistic.py index 100d824..6149381 100644 --- a/testing_project/test_logistic.py +++ b/testing_project/test_logistic.py @@ -28,4 +28,4 @@ def test_f_corner_cases(): # Implement a function iterate_f that runs f for it iterations. Write tests for the following cases: # x=0.1, r=2.2, it=1 => iterate_f(it, x, r)=[0.1, 0.198] # x=0.2, r=3.4, it=4 => iterate_f(it, x, r)=[0.2, 0.544, 0.843418, 0.449019, 0.841163] -# x=0.5, r=2, it=3 => iterate_f(it, x, r)=[0.5, 0.5, 0.5] +# x=0.5, r=2, it=3 => iterate_f(it, x, r)=[0.5, 0.5, 0.5, 0.5] -- 2.39.5