From 671fcd2145a326ebd7fa66f28aa017e4a80462c7 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Tue, 23 Sep 2025 16:59:10 +0300 Subject: [PATCH] add new test case function --- testing_project/logistic.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testing_project/logistic.py b/testing_project/logistic.py index e49d1c2..5e7a44d 100644 --- a/testing_project/logistic.py +++ b/testing_project/logistic.py @@ -1 +1,4 @@ -# Your code goes here +def f(x,r): + return r * x * (1-x) + + \ No newline at end of file