|
63 | 63 | |Sets|Easy|[Check Subset](https://www.hackerrank.com/challenges/py-check-subset/problem)|[The Captain's Room.py ](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/4.sets/39.Check%20Subset.py)|
|
64 | 64 | |Sets|Easy|[Check Strict Superset](https://www.hackerrank.com/challenges/py-check-strict-superset/problem)|[Check Strict Superset.py ](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/4.sets/40.Check%20Strict%20Superset.py)|
|
65 | 65 |
|
66 |
| -> 4.Math<br> |
| 66 | +> 5.Math<br> |
67 | 67 |
|
68 | 68 | | Subdomain | Difficulty | Problem link | Solution |
|
69 | 69 | |:---------:|:----------:|:-----------: |:--------:|
|
|
75 | 75 | |Math|Medium|[Triangle Quest](https://www.hackerrank.com/challenges/python-quest-1/problem)|[python-quest-1.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/5.math/46.Triangle%20Quest.py)|
|
76 | 76 | |Math|Medium|[Triangle Quest 2](https://www.hackerrank.com/challenges/triangle-quest-2/problem)|[triangle-quest-2.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/5.math/47.Triangle%20Quest%202.py)|
|
77 | 77 |
|
| 78 | +> 6.itertools<br> |
| 79 | +
|
| 80 | +| Subdomain | Difficulty | Problem link | Solution | |
| 81 | +|:---------:|:----------:|:-----------: |:--------:| |
| 82 | +|Itertools|Easy|[itertools.product()](https://www.hackerrank.com/challenges/itertools-product/problem)|[itertools-product.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/48.itertools.product().py)| |
| 83 | +|Itertools|Easy|[itertools.permutations()](https://www.hackerrank.com/challenges/itertools-permutations/problem)|[itertools-permutations.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/49.itertools.permutations().py)| |
| 84 | +|Itertools|Easy|[itertools.combinations()](https://www.hackerrank.com/challenges/itertools-combinations/problem)|[itertools-combinations.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/50.itertools.combinations().py)| |
| 85 | +|Itertools|Easy|[itertools.combinations_with_replacement()](https://www.hackerrank.com/challenges/itertools-combinations-with-replacement/problem)|[itertools-combinations-with-replacement.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/51.itertools.combinations_with_replacement().py)| |
| 86 | +|Itertools|Medium|[Compress the String!](https://www.hackerrank.com/challenges/compress-the-string/problem)|[compress-the-string.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/52.Compress%20the%20String!.py)| |
| 87 | +|Itertools|Medium|[Iterables and Iterators](https://www.hackerrank.com/challenges/iterables-and-iterators/problem)|[iterables-and-iterators.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/53.Iterables%20and%20Iterators.py)| |
| 88 | +|Itertools|Hard|[Maximize It!](https://www.hackerrank.com/challenges/maximize-it/problem)|[maximize-it.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/6.itertools/54.Maximize%20It!.py)| |
| 89 | + |
| 90 | +> 7.collections<br> |
| 91 | +
|
| 92 | +| Subdomain | Difficulty | Problem link | Solution | |
| 93 | +|:---------:|:----------:|:-----------: |:--------:| |
| 94 | +|Collections|Easy|[collections.Counter()](https://www.hackerrank.com/challenges/collections-counter/problem)|[collections-counter.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/55.collections.Counter().py)| |
| 95 | +|Collections|Easy|[DefaultDict Tutorial](https://www.hackerrank.com/challenges/defaultdict-tutorial/problem)|[defaultdict-tutorial.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/56.DefaultDict%20Tutorial.py)| |
| 96 | +|Collections|Easy|[Collections.namedtuple()](https://www.hackerrank.com/challenges/py-collections-namedtuple/problem)|[py-collections-namedtuple.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/57.Collections.namedtuple().py)| |
| 97 | +|Collections|Easy|[Collections.OrderedDict()](https://www.hackerrank.com/challenges/py-collections-ordereddict/problem)|[py-collections-ordereddict.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/58.Collections.OrderedDict().py)| |
| 98 | +|Collections|Medium|[Word Order](https://www.hackerrank.com/challenges/word-order/problem)|[word-order.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/59.Word%20Order.py)| |
| 99 | +|Collections|Easy|[Collections.deque()](https://www.hackerrank.com/challenges/py-collections-deque/problem)|[py-collections-deque.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/60.Collections.deque().py)| |
| 100 | +|Collections|Medium|[Company Logo](https://www.hackerrank.com/challenges/most-commons/problem)|[most-commons.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/61.Company%20Logo.py)| |
| 101 | +|Collections|Medium|[Piling Up!](https://www.hackerrank.com/challenges/piling-up/problem)|[piling-up.py](https://github.com/Kushal997-das/Competitive-Programming/blob/master/Hackerrank_python/7.collections/62.Piling%20Up!.py)| |
78 | 102 |
|
0 commit comments