Fix math.comb() typo

This commit is contained in:
Aniruddha Saha
2023-12-04 20:57:31 -05:00
committed by GitHub
parent a8ea2b429f
commit 9a9321d923

View File

@@ -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": []
}
]
}
}