From cbb214178d97d24335bf9c078524949772e4afd1 Mon Sep 17 00:00:00 2001 From: Lucas <100660343+lulunac27a@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:57:14 -0500 Subject: [PATCH] Fix number mistake in Line 81 of README The exact number of possible ranked hands is 7,462, not 7,642. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc029d2..87d02f0 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ Otherwise move straight to evaluating your hand strength: 1600 ``` -Hand strength is valued on a scale of 1 to 7462, where 1 is a Royal Flush and 7462 is unsuited 7-5-4-3-2, as there are only 7642 distinctly ranked hands in poker. Once again, refer to my blog post for a more mathematically complete explanation of why this is so. +Hand strength is valued on a scale of 1 to 7462, where 1 is a Royal Flush and 7462 is unsuited 7-5-4-3-2, as there are only 7462 distinctly ranked hands in poker. Once again, refer to my blog post for a more mathematically complete explanation of why this is so. If you want to deal out cards randomly from a deck, you can also do that with Deuces: ```python