Created
December 2, 2020 21:44
-
-
Save Pengeszikra/8f8b3b64ae7a3a139c04b2623dc109d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fact = n => n ? fact(n - 1) * n : 1; | |
| const poisson = (l, k) => (l ** k / fact(k)) * Math.E ** -l; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment