Skip to content

Commit fe6cd51

Browse files
committed
Update README.md
1 parent bd1777a commit fe6cd51

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

Python/README.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Python
2+
3+
| Subdomain | Challenge | Score | Difficulty | Solution |
4+
|:---------------------------:|:------------------------------------------------------------------------------------------------------------------------:|:------:|:----------:|:----------------------------------------------------------------------------------------------------------------------:|
5+
| Introduction | [Say "Hello, World!" With Python](https://www.hackerrank.com/challenges/py-hello-world) | 5 | Easy | [Solution.py](Introduction/Say%20Hello%2C%20World!%20With%20Python/Solution.py) |
6+
| Introduction | [Python If-Else](https://www.hackerrank.com/challenges/py-if-else) | 10 | Easy | [Solution.py](Introduction/Python%20If-Else/Solution.py) |
7+
| Introduction | [Arithmetic Operators](https://www.hackerrank.com/challenges/python-arithmetic-operators) | 10 | Easy | [Solution.py](Introduction/Arithmetic%20Operators/Solution.py) |
8+
| Introduction | [Python: Division](https://www.hackerrank.com/challenges/python-division) | 10 | Easy | [Solution.py](Introduction/Python%20Division/Solution.py) |
9+
| Introduction | [Loops](https://www.hackerrank.com/challenges/python-loops) | 10 | Easy | [Solution.py](Introduction/Loops/Solution.py) |
10+
| Introduction | [Write a function](https://www.hackerrank.com/challenges/write-a-function) | 10 | Medium | [Solution.py](Introduction/Write%20a%20function/Solution.py) |
11+
| Introduction | [Print Function](https://www.hackerrank.com/challenges/python-print) | 20 | Easy | [Solution.py](Introduction/Print%20Function/Solution.py) |
12+
| Basic Data Types | [List Comprehensions](https://www.hackerrank.com/challenges/list-comprehensions) | 10 | Easy | [Solution.py](Basic%20Data%20Types/List%20Comprehensions/Solution.py) |
13+
| Basic Data Types | [Find the Runner-Up Score!](https://www.hackerrank.com/challenges/find-second-maximum-number-in-a-list) | 10 | Easy | [Solution.py](Basic%20Data%20Types/Find%20the%20Runner-Up%20Score!/Solution.py) |
14+
| Basic Data Types | [Nested Lists](https://www.hackerrank.com/challenges/nested-list) | 10 | Easy | [Solution.py](Basic%20Data%20Types/Nested%20Lists/Solution.py) |
15+
| Basic Data Types | [Finding the percentage](https://www.hackerrank.com/challenges/finding-the-percentage) | 10 | Easy | [Solution.py](Basic%20Data%20Types/Finding%20the%20percentage/Solution.py) |
16+
| Basic Data Types | [Lists](https://www.hackerrank.com/challenges/python-lists) | 10 | Easy | [Solution.py](Basic%20Data%20Types/Lists/Solution.py) |
17+
| Basic Data Types | [Tuples](https://www.hackerrank.com/challenges/python-tuples) | 10 | Easy | [Solution.py](Basic%20Data%20Types/Tuples/Solution.py) |
18+
| Strings | [sWAP cASE](https://www.hackerrank.com/challenges/swap-case) | 10 | Easy | [Solution.py](Strings/sWAP%20cASE/Solution.py) |
19+
| Strings | [String Split and Join](https://www.hackerrank.com/challenges/python-string-split-and-join) | 10 | Easy | [Solution.py](Strings/String%20Split%20and%20Join/Solution.py) |
20+
| Strings | [What's Your Name?](https://www.hackerrank.com/challenges/whats-your-name) | 10 | Easy | [Solution.py](Strings/What's%20Your%20Name/Solution.py) |
21+
| Strings | [Mutations](https://www.hackerrank.com/challenges/python-mutations) | 10 | Easy | [Solution.py](Strings/Mutations/Solution.py) |
22+
| Strings | [Find a string](https://www.hackerrank.com/challenges/find-a-string) | 10 | Easy | [Solution.py](Strings/Find%20a%20string/Solution.py) |
23+
| Strings | [String Validators](https://www.hackerrank.com/challenges/string-validators) | 10 | Easy | [Solution.py](Strings/String%20Validators/Solution.py) |
24+
| Strings | [Text Alignment](https://www.hackerrank.com/challenges/text-alignment) | 10 | Easy | [Solution.py](Strings/Text%20Alignment/Solution.py) |
25+
| Strings | [Text Wrap](https://www.hackerrank.com/challenges/text-wrap) | 10 | Easy | [Solution.py](Strings/Text%20Wrap/Solution.py) |
26+
| Strings | [Designer Door Mat](https://www.hackerrank.com/challenges/designer-door-mat) | 10 | Easy | [Solution.py](Strings/Designer%20Door%20Mat/Solution.py) |
27+
| Strings | [String Formatting](https://www.hackerrank.com/challenges/python-string-formatting) | 10 | Easy | [Solution.py](Strings/String%20Formatting/Solution.py) |
28+
| Strings | [Alphabet Rangoli](https://www.hackerrank.com/challenges/alphabet-rangoli) | 20 | Easy | [Solution.py](Strings/Alphabet%20Rangoli/Solution.py) |
29+
| Strings | [Capitalize!](https://www.hackerrank.com/challenges/capitalize) | 20 | Easy | [Solution.py](Strings/Capitalize!/Solution.py) |
30+
| Strings | [The Minion Game](https://www.hackerrank.com/challenges/the-minion-game) | 40 | Medium | [Solution.py](Strings/The%20Minion%20Game/Solution.py) |
31+
| Strings | [Merge the Tools!](https://www.hackerrank.com/challenges/merge-the-tools) | 40 | Medium | [Solution.py](Strings/Merge%20the%20Tools!/Solution.py) |
32+
| Sets | [Introduction to Sets](https://www.hackerrank.com/challenges/py-introduction-to-sets) | 10 | Easy | [Solution.py](Sets/Introduction%20to%20Sets/Solution.py) |
33+
| Sets | [No Idea!](https://www.hackerrank.com/challenges/no-idea) | 50 | Medium | [Solution.py](Sets/No%20Idea!/Solution.py) |
34+
| Sets | [Symmetric Difference](https://www.hackerrank.com/challenges/symmetric-difference) | 10 | Easy | [Solution.py](Sets/Symmetric%20Difference/Solution.py) |
35+
| Sets | [Set .add()](https://www.hackerrank.com/challenges/py-set-add) | 10 | Easy | [Solution.py](Sets/Set%20.add()/Solution.py) |
36+
| Sets | [Set .discard(), .remove() & .pop()](https://www.hackerrank.com/challenges/py-set-discard-remove-pop) | 10 | Easy | [Solution.py](Sets/Set%20.discard()%2C%20.remove()%20%26%20.pop()/Solution.py) |
37+
| Sets | [Set .union() Operation](https://www.hackerrank.com/challenges/py-set-union) | 10 | Easy | [Solution.py](Sets/Set%20.union()%20Operation/Solution.py) |
38+
| Sets | [Set .intersection() Operation](https://www.hackerrank.com/challenges/py-set-intersection-operation) | 10 | Easy | [Solution.py](Sets/Set%20.intersection()%20Operation/Solution.py) |
39+
| Sets | [Set .difference() Operation](https://www.hackerrank.com/challenges/py-set-difference-operation) | 10 | Easy | [Solution.py](Sets/Set%20.difference()%20Operation/Solution.py) |
40+
| Sets | [Set .symmetric_difference() Operation](https://www.hackerrank.com/challenges/py-set-symmetric-difference-operation) | 10 | Easy | [Solution.py](Sets/Set%20.symmetric_difference()%20Operation/Solution.py) |
41+
| Sets | [Set Mutations](https://www.hackerrank.com/challenges/py-set-mutations) | 10 | Easy | [Solution.py](Sets/Set%20Mutations/Solution.py) |
42+
| Sets | [The Captain's Room](https://www.hackerrank.com/challenges/py-the-captains-room) | 10 | Easy | [Solution.py](Sets/The%20Captain's%20Room/Solution.py) |
43+
| Sets | [Check Subset](https://www.hackerrank.com/challenges/py-check-subset) | 10 | Easy | [Solution.py](Sets/Check%20Subset/Solution.py) |
44+
| Sets | [Check Strict Superset](https://www.hackerrank.com/challenges/py-check-strict-superset) | 10 | Easy | [Solution.py](Sets/Check%20Strict%20Superset/Solution.py) |

0 commit comments

Comments
 (0)