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