From 436acd66f556d44e39dea2f8d12e5b25b486f4a6 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Tue, 23 Sep 2025 17:04:04 +0300 Subject: [PATCH] add logistic function --- testing_project/logistic.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing_project/logistic.py b/testing_project/logistic.py index e49d1c2..cb3e06e 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)