8000 adsd link to sub domain for all sub domain headings Β· jongfranco/hackerrank-python@c327746 Β· GitHub
[go: up one dir, main page]

Skip to content

Commit c327746

Browse files
adsd link to sub domain for all sub domain headings
1 parent 548aeae commit c327746

File tree

1 file changed

+34
-34
lines changed

1 file changed

+34
-34
lines changed

β€ŽREADME.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -50,25 +50,25 @@ The Python Domain is further Divided into the following sub-domains.
5050

5151
## Sub Domains & Problems (+Solutions) in the Python Domain
5252
Quick Links ⚑ :
53-
[Introduction](#introduction) |
54-
[Basic Data Types](#basic-data-types) |
55-
[Strings](#strings) |
56-
[Sets](#sets) |
57-
[Math](#math) |
58-
[Itertools](#itertools) |
59-
[Collections](#collections) |
60-
[Data and Time](#date-and-time) |
61-
[Errors and Exceptions](#errors-and-exceptions) |
62-
[Classes](#classes) |
63-
[Built-Ins](#built-ins) |
64-
[Python Functionals](#python-functionals) |
65-
[Regex and Parsing](#regex-and-parsing) |
66-
[XML](#xml) |
67-
[Closures and Decorators](#closures-and-decorators) |
68-
[NumPy](#numpy) |
69-
[Debugging](#debugging) |
70-
71-
### Introduction [πŸ”Ό](#sub-domains--problems-solutions-in-the-python-domain)
53+
[Introduction](#introduction-) |
54+
[Basic Data Types](#basic-data-types-) |
55+
[Strings](#strings-) |
56+
[Sets](#sets-) |
57+
[Math](#math-) |
58+
[Itertools](#itertools-) |
59+
[Collections](#collections-) |
60+
[Data and Time](#date-and-time-) |
61+
[Errors and Exceptions](#errors-and-exceptions-) |
62+
[Classes](#classes-) |
63+
[Built-Ins](#built-ins-) |
64+
[Python Functionals](#python-functionals-) |
65+
[Regex and Parsing](#regex-and-parsing-) |
66+
[XML](#xml-) |
67+
[Closures and Decorators](#closures-and-decorators-) |
68+
[NumPy](#numpy-) |
69+
[Debugging](#debugging-) |
70+
71+
### Introduction [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
7272
| Problem | Difficulty | Solution Link |
7373
|---------|------------|---------------|
7474
| [Say "Hello World" With Python](https://www.hackerrank.com/challenges/py-hello-world) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/introduction/SayHelloWorldWithPython.py) |
@@ -80,7 +80,7 @@ Quick Links ⚑ :
8080
| [Print Function](https://www.hackerrank.com/challenges/python-print) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/introduction/PrintFunction.py) |
8181

8282

83-
### Basic Data Types [☝](#sub-domains--problems-solutions-in-the-python-domain)
83+
### Basic Data Types [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
8484
| Problem | Difficulty | Solution Link |
8585
|---------|------------|---------------|
8686
| [List Comprehensions](https://www.hackerrank.com/challenges/list-comprehensions) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/basic-data-types/ListComprehension.py) |
@@ -110,7 +110,7 @@ Quick Links ⚑ :
110110
| [Merge The Tools](https://www.hackerrank.com/challenges/merge-the-tools) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/strings/merge-the-tools.py) |
111111

112112

113-
### Sets [⬆](#sub-domains--problems-solutions-in-the-python-domain)
113+
### Sets [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
114114
| Problem | Difficulty | Solution Link |
115115
|---------|------------|---------------|
116116
| [Introduction to Sets](https://www.hackerrank.com/challenges/py-introduction-to-sets) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/sets/introduction-to-sets.py) |
@@ -128,7 +128,7 @@ Quick Links ⚑ :
128128
| [Check Strict Superset](https://www.hackerrank.com/challenges/py-check-strict-superset) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/sets/is-strict-superset.py) |
129129

130130

131-
### Math
131+
### Math [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
132132
| Problem | Difficulty | Solution Link |
133133
|---------|------------|---------------|
134134
| [Polar Coordinates](https://www.hackerrank.com/challenges/polar-coordinates) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/math/polar-coordinates.py) |
@@ -140,7 +140,7 @@ Quick Links ⚑ :
140140
| [Triangle Quest](https://www.hackerrank.com/challenges/python-quest-1) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/math/triangle-quest.py) |
141141

142142

143-
### Itertools
143+
### Itertools [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
144144
| Problem | Difficulty | Solution Link |
145145
|---------|------------|---------------|
146146
| [itertools.product()](https://www.hackerrank.com/challenges/itertools-product) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/itertools/itertools-product.py) |
@@ -152,7 +152,7 @@ Quick Links ⚑ :
152152
| [Maximize It!](https://www.hackerrank.com/challenges/maximize-it) | Hard | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/itertools/maximize-it.py) |
153153

154154

155-
### Collections
155+
### Collections [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
156156
| Problem | Difficulty | Solution Link |
157157
|---------|------------|---------------|
158158
| [collections.Counter()](https://www.hackerrank.com/challenges/collections-counter) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/collections/collections-counter.py) |
@@ -165,28 +165,28 @@ Quick Links ⚑ :
165165
| [Piling Up!](https://www.hackerrank.com/challenges/piling-up) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/collections/piling-up.py) |
166166

167167

168-
### Date and Time
168+
### Date and Time [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
169169
| Problem | Difficulty | Solution Link |
170170
|---------|------------|---------------|
171171
| [Calender Module](https://www.hackerrank.com/challenges/calendar-module) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/date-and-time/calendar-module.py) |
172172
| [Time Delta](https://www.hackerrank.com/challenges/python-time-delta) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/date-and-time/time-delta.py) |
173173

174174

175-
### Errors and Exceptions
175+
### Errors and Exceptions [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
176176
| Problem | Difficulty | Solution Link |
177177
|---------|------------|---------------|
178178
| [Exceptions](https://www.hackerrank.com/challenges/exceptions) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/errors-and-exceptions/exceptions.py) |
179179
| [Incorrect Regex](https://www.hackerrank.com/challenges/incorrect-regex) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/errors-and-exceptions/incorrect-regex.py) |
180180

181181

182-
### Classes
182+
### Classes [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
183183
| Problem | Difficulty | Solution Link |
184184
|---------|------------|---------------|
185185
| [Class 2 - Find the Torsional Angle](https://www.hackerrank.com/challenges/class-2-find-the-torsional-angle) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/classes/class-2-find-the-torsional-angle.py) |
186186
| [Classes: Dealing with Complex Numbers](https://www.hackerrank.com/challenges/class-1-dealing-with-complex-numbers) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/classes/dealing-with-complex-numbers.py) |
187187

188188

189-
### Built Ins
189+
### Built Ins [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
190190
| Problem | Difficulty | Solution Link |
191191
|---------|------------|---------------|
192192
| [Zipped!](https://www.hackerrank.com/challenges/zipped) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/built-ins/zipped.py) |
@@ -197,15 +197,15 @@ Quick Links ⚑ :
197197
| [ginortS](https://www.hackerrank.com/challenges/ginorts) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/built-ins/ginortS.py) |
198198

199199

200-
### Python Functionals
200+
### Python Functionals [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
201201
| Problem | Difficulty | Solution Link |
202202
|---------|------------|---------------|
203203
| [Map and Lambda Function](https://www.hackerrank.com/challenges/map-and-lambda-expression) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/python-functions/map-and-lambda-functions.py) |
204204
| [Validating Email Address with Filter](https://www.hackerrank.com/challenges/validate-list-of-email-address-with-filter) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/python-functions/validating-email-addresses.py) |
205205
| [Reduce Function](https://www.hackerrank.com/challenges/reduce-function) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/python-functions/reduce-function.py) |
206206

207207

208-
### Regex and Parsing
208+
### Regex and Parsing [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
209209
| Problem | Difficulty | Solution Link |
210210
|---------|------------|---------------|
211211
| [Detect Floating Point Number](https://www.hackerrank.com/challenges/introduction-to-regex) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/regex-and-parsing/detect-floating-point-numbers.py) |
@@ -227,21 +227,21 @@ Quick Links ⚑ :
227227
| [Matrix Script](https://www.hackerrank.com/challenges/matrix-script) | Hard | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/regex-and-parsing/matrix-script.py) |
228228

229229

230-
### XML
230+
### XML [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
231231
| Problem | Difficulty | Solution Link |
232232
|---------|------------|---------------|
233233
| [XML 1 - Find the Score](https://www.hackerrank.com/challenges/xml-1-find-the-score) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/xml/xml-1-find-the-score.py) |
234234
| [XML 2 - Find the Maximum Depth](https://www.hackerrank.com/challenges/xml2-find-the-maximum-depth) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/xml/xml-2-find-max-depth.py) |
235235

236236

237-
### Closures and Decorators
237+
### Closures and Decorators [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
238238
| Problem | Difficulty | Solution Link |
239239
|---------|------------|---------------|
240240
| [Standardize Mobile Numbers Using Decorators](https://www.hackerrank.com/challenges/standardize-mobile-number-using-decorators) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/closures-and-decorators/standardize-mobile-numbers-using-decorator.py) |
241241
| [Decorators 2 - Name Directory](https://www.hackerrank.com/challenges/decorators-2-name-directory) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/closures-and-decorators/decorator-2-name-directory.py) |
242242

243243

244-
### Numpy
244+
### Numpy [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
245245
| Problem | Difficulty | Solution Link |
246246
|---------|------------|---------------|
247247
| [Arrays](https://www.hackerrank.com/challenges/np-arrays) | Easy | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/numpy-python/arrays.py) |
@@ -262,7 +262,7 @@ Quick Links ⚑ :
262262

263263

264264

265-
### Debugging
265+
### Debugging [πŸ‘†](#sub-domains--problems-solutions-in-the-python-domain)
266266
| Problem | Difficulty | Solution Link |
267267
|---------|------------|---------------|
268268
| [Word Score](https://www.hackerrank.com/challenges/words-score) | Medium | [Solution](https://github.com/anishLearnsToCode/hackerrank-python/blob/master/debugging/word-score.py) |

0 commit comments

Comments
Β (0)
0