fix the instruction for the test func for iterate_f

This commit is contained in:
ASPP Student 2025-09-23 18:21:53 +03:00
parent 952f8b97a5
commit 3b74b69d9f

View file

@ -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]