From d19dcb7b4bd520f1d5c24907038f5bfe95a42a84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Feb 2019 16:46:56 +0100 Subject: [PATCH] Combinatorics --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94acf62..689b2ab 100644 --- a/README.md +++ b/README.md @@ -435,7 +435,7 @@ Combinatorics * **If you want to print the iterator, you need to pass it to the list() function!** ```python -from itertools import combinations, combinations_with_replacement, permutations, product +from itertools import product, combinations, combinations_with_replacement, permutations ``` ```python