From 8932f566f00e7e07ad806ebb1481357e230b28b3 Mon Sep 17 00:00:00 2001 From: Martin Simonoviez Date: Wed, 25 Dec 2024 23:15:46 +0100 Subject: [PATCH] UP solution 2 --- numpy_questions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy_questions.py b/numpy_questions.py index 0b1491b..b3b9d0f 100644 --- a/numpy_questions.py +++ b/numpy_questions.py @@ -76,4 +76,4 @@ def wallis_product(n_terms): resultat = 2 for k in range(n_terms): resultat = resultat*(4*((k+1)**2)/((4*((k+1)**2)-1))) - return resultat \ No newline at end of file + return resultat