From 3bb51fffa4fe74b22a6e10b8f297f939b06f2789 Mon Sep 17 00:00:00 2001
From: abcx1989 <47440636+abcx1989@users.noreply.github.com>
Date: Sun, 14 Jul 2019 21:31:52 -0700
Subject: [PATCH] Replace 4^10 with 10^4
---
ipynb/Fred Buns.ipynb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ipynb/Fred Buns.ipynb b/ipynb/Fred Buns.ipynb
index e88e618..ffd2887 100644
--- a/ipynb/Fred Buns.ipynb
+++ b/ipynb/Fred Buns.ipynb
@@ -41,7 +41,7 @@
"\n",
"* **Lock**: For our purposes a lock can be modeled as a `list` of 4 **tumblers**. \n",
"* **Tumbler:** Each tumbler has 10 distinct letters. I will represent a tumbler as a `str` of 10 letters.\n",
- "* **Combination**: Choosing a letter from each tumbler gives a combination, such as \"FRED\" or \"BUNS\". There are 410 = 10,000 combinations.\n",
+ "* **Combination**: Choosing a letter from each tumbler gives a combination, such as \"FRED\" or \"BUNS\". There are 104 = 10,000 combinations.\n",
"* **Word**: Some combinations (such as \"BUNS\") are *words*; others (such as \"SOMN\") are not words. We'll need a collection of dictionary words.\n",
"\n",
"Now on to the code! First the imports I will need and the vocabulary concepts:"