From f6c570bea30193b0c6f2559c2fc116a4e4d3dc8c Mon Sep 17 00:00:00 2001 From: Dendop <124508010+Dendop@users.noreply.github.com> Date: Sat, 10 Aug 2024 00:23:59 +0100 Subject: [PATCH] Add content for python sets (#6414) * update Python Sets * Update src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md * Update src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md --------- Co-authored-by: Kamran Ahmed --- .../roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md b/src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md index 26fb09257..93d17c64b 100644 --- a/src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md +++ b/src/data/roadmaps/python/content/sets@soZFqivM3YBuljeX6PoaX.md @@ -1 +1,7 @@ -# Sets \ No newline at end of file +# Sets + +Python Set is an unordered collection of data types that is iterable, mutable, and has no duplicate elements. The order of elements in a set is undefined though it may consist of various elements. The major advantage of using a set, as opposed to a list, is that it has a highly optimized method for checking whether a specific element is contained in the set. + + Visit the following resources to learn more: + + -[@video@Python Sets tutorial for Beginners](https://www.youtube.com/watch?v=t9j8lCUGZXo)