From e63da0db6238673bc74e5e4cf04b97a807cf2a6f Mon Sep 17 00:00:00 2001 From: surister Date: Thu, 28 Nov 2019 11:04:10 +0100 Subject: [PATCH] styling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6e2fa2..4f4d1e4 100644 --- a/README.md +++ b/README.md @@ -2260,7 +2260,7 @@ x, y = y, x How to check if all the elements in a given lists are unique? so [1, 2, 3] is unique but [1, 1, 2, 3] is not unique because 1 exists twice
-There are many ways of solving this problem: +There are many ways of solving this problem:
# Note: :list and -> bool are just python typings, they are not needed for the correct execution of the algorithm. Taking advantage of sets and len: