From 9a9321d923aedd0946090d3d2d6e6ae151485217 Mon Sep 17 00:00:00 2001 From: Aniruddha Saha Date: Mon, 4 Dec 2023 20:57:31 -0500 Subject: [PATCH] Fix math.comb() typo --- Notebooks/Chap03/3_3_Shallow_Network_Regions.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Notebooks/Chap03/3_3_Shallow_Network_Regions.ipynb b/Notebooks/Chap03/3_3_Shallow_Network_Regions.ipynb index 53a2b86..6f45ebf 100644 --- a/Notebooks/Chap03/3_3_Shallow_Network_Regions.ipynb +++ b/Notebooks/Chap03/3_3_Shallow_Network_Regions.ipynb @@ -79,7 +79,7 @@ "source": [ "def number_regions(Di, D):\n", " # TODO -- implement Zaslavsky's formula\n", - " # You can use math.com() https://www.w3schools.com/python/ref_math_comb.asp\n", + " # You can use math.comb() https://www.w3schools.com/python/ref_math_comb.asp\n", " # Replace this code\n", " N = 1;\n", "\n", @@ -256,4 +256,4 @@ "outputs": [] } ] -} \ No newline at end of file +}