From 98ff00ac7fbce1746e6ffa3c0642c519da5a4df9 Mon Sep 17 00:00:00 2001 From: Sumanth Date: Wed, 19 Aug 2020 12:12:25 +0000 Subject: [PATCH] eror in function name --- 07_Day_Sets/07_sets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/07_Day_Sets/07_sets.md b/07_Day_Sets/07_sets.md index d18a607..c627b9e 100644 --- a/07_Day_Sets/07_sets.md +++ b/07_Day_Sets/07_sets.md @@ -374,10 +374,10 @@ even_numbers.isdisjoint(odd_numbers) # True, because no common item python = {'p', 'y', 't', 'h', 'o','n'} dragon = {'d', 'r', 'a', 'g', 'o','n'} -python.disjoint(dragon) # False, there are common items {'o', 'n'} +python.isdisjoint(dragon) # False, there are common items {'o', 'n'} ``` -🌕 You are a rising star . You have just completed day 7 challenges and you are 7 steps a head in to your way to greatness. Now do some exercises for your brain and for your muscle. +🌕 You are a rising star . You have just completed day 7 challenges and you are 7 steps ahead in to your way to greatness. Now do some exercises for your brain and for your muscle. ## 💻 Exercises: Day 7