From f7b3f6af8ff8e3be2cbe081b9dcecc2606cd92ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 5 Feb 2019 21:40:02 +0100 Subject: [PATCH] Removed the infamous no_duplicates example --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c64e30b..191837f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,6 @@ sorted_by_both = sorted(, key=lambda el: (el[1], el[0])) flattened_list = list(itertools.chain.from_iterable()) list_of_chars = list() product_of_elems = functools.reduce(lambda out, x: out * x, ) -no_duplicates = list(dict.fromkeys()) ``` ```python