Skip to content

Commit 0bd98d2

Browse files
authored
Merge pull request #73 from jessicayung/patch-1
fix: correct typo in section 7.1
2 parents 1946c83 + 8097364 commit 0bd98d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

07-beyond-numpy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ surprising results. But let's start with the most obvious Python solution:
3939
return Z
4040
4141
This solution is the slowest solution because it requires 4 loops, and more
42-
importantly, it tests all the different combinations (11641) of 4 integers
42+
importantly, it tests all the different combinations (14641) of 4 integers
4343
between 0 and 10 to retain only combinations whose sum is 10. We can of course
4444
get rid of the 4 loops using itertools, but the code remains slow:
4545

0 commit comments

Comments
 (0)