An open API service indexing awesome lists of open source software.

https://github.com/quantumudit/hackerrank-python-challenges


https://github.com/quantumudit/hackerrank-python-challenges

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Hackerrank Python Challenges
---

## Solution Reference Table

### Challenge Category: Easy

| Challenge ID | Challenge Link | Solution Script |
|----|----------------|-----------------|
| e001 | [Say "Hello, World!" With Python](https://www.hackerrank.com/challenges/py-hello-world/problem) | [Solution](./easy/e001.py) |
| e002 | [Python If-Else](https://www.hackerrank.com/challenges/py-if-else/problem) | [Solution](./easy/e002.py) |
| e003 | [Arithmetic Operators](https://www.hackerrank.com/challenges/python-arithmetic-operators/problem) | [Solution](./easy/e003.py) |
| e004 | [Python: Division](https://www.hackerrank.com/challenges/python-division/problem) | [Solution](./easy/e004.py) |
| e005 | [Loops](https://www.hackerrank.com/challenges/python-loops/problem) | [Solution](./easy/e005.py) |
| e006 | [Print Function](https://www.hackerrank.com/challenges/python-print/problem) | [Solution](./easy/e006.py) |
| e007 | [List Comprehensions](https://www.hackerrank.com/challenges/list-comprehensions/problem) | [Solution](./easy/e007.py) |
| e008 | [Find the Runner-Up Score!](https://www.hackerrank.com/challenges/find-second-maximum-number-in-a-list/problem) | [Solution](./easy/e008.py) |
| e009 | [Nested Lists](https://www.hackerrank.com/challenges/nested-list/problem) | [Solution](./easy/e009.py) |
| e010 | [Finding the percentage](https://www.hackerrank.com/challenges/finding-the-percentage/problem) | [Solution](./easy/e010.py) |
| e011 | [Lists](https://www.hackerrank.com/challenges/python-lists/problem) | [Solution](./easy/e011.py) |
| e012 | [Tuples](https://www.hackerrank.com/challenges/python-tuples/problem) | [Solution](./easy/e012.py) |
| e013 | [sWAP cASE](https://www.hackerrank.com/challenges/swap-case/problem) | [Solution](./easy/e013.py) |
| e014 | [String Split and Join](https://www.hackerrank.com/challenges/python-string-split-and-join/problem) | [Solution](./easy/e014.py) |
| e015 | [What's Your Name?](https://www.hackerrank.com/challenges/whats-your-name/problem) | [Solution](./easy/e015.py) |
| e016 | [Mutations](https://www.hackerrank.com/challenges/python-mutations/problem) | [Solution](./easy/e016.py) |
| e017 | [Find a string](https://www.hackerrank.com/challenges/find-a-string/problem) | [Solution](./easy/e017.py) |
| e018 | [String Validators](https://www.hackerrank.com/challenges/string-validators/problem) | [Solution](./easy/e018.py) |
| e019 | [Text Wrap](https://www.hackerrank.com/challenges/text-wrap/problem) | [Solution](./easy/e019.py) |
| e020 | [Designer Door Mat](https://www.hackerrank.com/challenges/designer-door-mat/problem) | [Solution](./easy/e020.py) |
| e021 | [String Formatting](https://www.hackerrank.com/challenges/python-string-formatting/problem) | [Solution](./easy/e021.py) |
| e022 | [Alphabet Rangoli](https://www.hackerrank.com/challenges/alphabet-rangoli/problem) | [Solution](./easy/e022.py) |
| e023 | [Capitalize!](https://www.hackerrank.com/challenges/capitalize/problem) | [Solution](./easy/e023.py) |
| e024 | [itertools.product()](https://www.hackerrank.com/challenges/itertools-product/problem) | [Solution](./easy/e024.py) |
| e025 | [collections.Counter()](https://www.hackerrank.com/challenges/collections-counter/problem) | [Solution](./easy/e025.py) |
| e026 | [itertools.permutations()](https://www.hackerrank.com/challenges/itertools-permutations/problem) | [Solution](./easy/e026.py) |
| e027 | [Polar Coordinates](https://www.hackerrank.com/challenges/polar-coordinates/problem) | [Solution](./easy/e027.py) |
| e028 | [Introduction to Sets](https://www.hackerrank.com/challenges/py-introduction-to-sets/problem) | [Solution](./easy/e028.py) |
| e029 | [DefaultDict Tutorial](https://www.hackerrank.com/challenges/defaultdict-tutorial/problem) | [Solution](./easy/e029.py) |
| e030 | [Calendar Module](https://www.hackerrank.com/challenges/calendar-module/problem) | [Solution](./easy/e030.py) |
| e031 | [Exceptions](https://www.hackerrank.com/challenges/exceptions/problem) | [Solution](./easy/e031.py) |
| e032 | [Collections.namedtuple()](https://www.hackerrank.com/challenges/py-collections-namedtuple/problem) | [Solution](./easy/e032.py) |

### Challenge Category: Medium

| Challenge ID | Challenge Link | Solution Script |
|----|----------------|-----------------|
| m001 | [Write a function](https://www.hackerrank.com/challenges/write-a-function/problem) | [Solution](./medium/m001.py) |
| m002 | [The Minion Game](https://www.hackerrank.com/challenges/the-minion-game/problem) | [Solution](./medium/m002.py) |