Merge pull request #108 from ani0075saha/main

Fix math.comb() typo
This commit is contained in:
udlbook
2023-12-10 14:43:54 +00:00
committed by GitHub

View File

@@ -79,7 +79,7 @@
"source": [ "source": [
"def number_regions(Di, D):\n", "def number_regions(Di, D):\n",
" # TODO -- implement Zaslavsky's formula\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", " # Replace this code\n",
" N = 1;\n", " N = 1;\n",
"\n", "\n",