Skip to content

Commit

Permalink
Merge pull request Asabeneh#66 from Sumanth-Talluri/day7-contrib
Browse files Browse the repository at this point in the history
error in function name
  • Loading branch information
Asabeneh authored Sep 6, 2020
2 parents f890229 + 98ff00a commit d3c9742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 07_Day_Sets/07_sets.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d3c9742

Please sign in to comment.