├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.md ├── 0001.SayHelloWorldWithPython ├── py-hello-world-English.pdf └── solution.py ├── 0002.PythonIfElse ├── py-if-else-English.pdf └── solution.py ├── 0003.ArithmeticOperators ├── python-arithmetic-operators-English.pdf └── solution.py ├── 0004.PythonDivision ├── python-division-English.pdf └── solution.py ├── 0005.Loops ├── python-loops-English.pdf └── solution.py ├── 0006.PrintFunction ├── python-print-English.pdf └── solution.py ├── 0007.WriteAFunction ├── solution.py └── write-a-function-English.pdf ├── 0008.ListComprehensions ├── list-comprehensions-English.pdf └── solution.py ├── 0009.FindTheRunnerUpScore ├── find-second-maximum-number-in-a-list-English.pdf └── solution.py ├── 0010.NestedLists ├── nested-list-English.pdf └── solution.py ├── 0011.FindingThePercentage ├── finding-the-percentage-English.pdf └── solution.py ├── 0012.Lists ├── python-lists-English.pdf └── solution.py ├── 0013.sWAPcASE ├── solution.py └── swap-case-English.pdf ├── 0014.WhatsYourName ├── solution.py └── whats-your-name-English.pdf ├── 0015.Mutations ├── python-mutations-English.pdf └── solution.py ├── 0016.FindAString ├── find-a-string-English.pdf └── solution.py ├── 0017.StringValidators ├── solution.py └── string-validators-English.pdf ├── 0018.TextAlignment ├── solution.py └── text-alignment-English.pdf ├── 0019.TextWrap ├── solution.py └── text-wrap-English.pdf ├── 0020.DesignerDoorMat ├── designer-door-mat-English.pdf └── solution.py ├── 0021.StringFormatting ├── python-string-formatting-English.pdf └── solution.py ├── 0022.AlphabetRangoli ├── alphabet-rangoli-English.pdf └── solution.py ├── 0023.Capitalize! ├── capitalize-English.pdf └── solution.py ├── 0024.TheMinionGame ├── solution.py └── the-minion-game-English.pdf ├── 0025.MergeTheTools! ├── merge-the-tools-English.pdf └── solution.py ├── 0026.StringSplitAndJoin ├── python-string-split-and-join-English.pdf └── solution.py ├── 0027.IntroductionToSets ├── py-introduction-to-sets-English.pdf └── solution.py ├── 0028.SymmetricDifference ├── solution.py └── symmetric-difference-English.pdf ├── 0029.Set.Add ├── py-set-add-English.pdf └── solution.py ├── 0030.Set.union ├── py-set-union-English.pdf └── solution.py ├── 0031.Set.discard(),.remove(),&.pop() ├── py-set-discard-remove-pop-English.pdf └── solution.py ├── 0032.Set.intersection()Operation ├── py-set-intersection-operation-English.pdf └── solution.py ├── 0033.Set.difference()Operation ├── py-set-difference-operation-English.pdf └── solution.py ├── 0034.Set.symmetric_difference()Operation ├── py-set-symmetric-difference-operation-English.pdf └── solution.py └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /0001.SayHelloWorldWithPython/py-hello-world-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0001.SayHelloWorldWithPython/py-hello-world-English.pdf -------------------------------------------------------------------------------- /0001.SayHelloWorldWithPython/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0001.SayHelloWorldWithPython/solution.py -------------------------------------------------------------------------------- /0002.PythonIfElse/py-if-else-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0002.PythonIfElse/py-if-else-English.pdf -------------------------------------------------------------------------------- /0002.PythonIfElse/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0002.PythonIfElse/solution.py -------------------------------------------------------------------------------- /0003.ArithmeticOperators/python-arithmetic-operators-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0003.ArithmeticOperators/python-arithmetic-operators-English.pdf -------------------------------------------------------------------------------- /0003.ArithmeticOperators/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0003.ArithmeticOperators/solution.py -------------------------------------------------------------------------------- /0004.PythonDivision/python-division-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0004.PythonDivision/python-division-English.pdf -------------------------------------------------------------------------------- /0004.PythonDivision/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0004.PythonDivision/solution.py -------------------------------------------------------------------------------- /0005.Loops/python-loops-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0005.Loops/python-loops-English.pdf -------------------------------------------------------------------------------- /0005.Loops/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0005.Loops/solution.py -------------------------------------------------------------------------------- /0006.PrintFunction/python-print-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0006.PrintFunction/python-print-English.pdf -------------------------------------------------------------------------------- /0006.PrintFunction/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0006.PrintFunction/solution.py -------------------------------------------------------------------------------- /0007.WriteAFunction/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0007.WriteAFunction/solution.py -------------------------------------------------------------------------------- /0007.WriteAFunction/write-a-function-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0007.WriteAFunction/write-a-function-English.pdf -------------------------------------------------------------------------------- /0008.ListComprehensions/list-comprehensions-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0008.ListComprehensions/list-comprehensions-English.pdf -------------------------------------------------------------------------------- /0008.ListComprehensions/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0008.ListComprehensions/solution.py -------------------------------------------------------------------------------- /0009.FindTheRunnerUpScore/find-second-maximum-number-in-a-list-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0009.FindTheRunnerUpScore/find-second-maximum-number-in-a-list-English.pdf -------------------------------------------------------------------------------- /0009.FindTheRunnerUpScore/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0009.FindTheRunnerUpScore/solution.py -------------------------------------------------------------------------------- /0010.NestedLists/nested-list-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0010.NestedLists/nested-list-English.pdf -------------------------------------------------------------------------------- /0010.NestedLists/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0010.NestedLists/solution.py -------------------------------------------------------------------------------- /0011.FindingThePercentage/finding-the-percentage-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0011.FindingThePercentage/finding-the-percentage-English.pdf -------------------------------------------------------------------------------- /0011.FindingThePercentage/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0011.FindingThePercentage/solution.py -------------------------------------------------------------------------------- /0012.Lists/python-lists-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0012.Lists/python-lists-English.pdf -------------------------------------------------------------------------------- /0012.Lists/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0012.Lists/solution.py -------------------------------------------------------------------------------- /0013.sWAPcASE/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0013.sWAPcASE/solution.py -------------------------------------------------------------------------------- /0013.sWAPcASE/swap-case-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0013.sWAPcASE/swap-case-English.pdf -------------------------------------------------------------------------------- /0014.WhatsYourName/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0014.WhatsYourName/solution.py -------------------------------------------------------------------------------- /0014.WhatsYourName/whats-your-name-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0014.WhatsYourName/whats-your-name-English.pdf -------------------------------------------------------------------------------- /0015.Mutations/python-mutations-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0015.Mutations/python-mutations-English.pdf -------------------------------------------------------------------------------- /0015.Mutations/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0015.Mutations/solution.py -------------------------------------------------------------------------------- /0016.FindAString/find-a-string-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0016.FindAString/find-a-string-English.pdf -------------------------------------------------------------------------------- /0016.FindAString/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0016.FindAString/solution.py -------------------------------------------------------------------------------- /0017.StringValidators/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0017.StringValidators/solution.py -------------------------------------------------------------------------------- /0017.StringValidators/string-validators-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0017.StringValidators/string-validators-English.pdf -------------------------------------------------------------------------------- /0018.TextAlignment/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0018.TextAlignment/solution.py -------------------------------------------------------------------------------- /0018.TextAlignment/text-alignment-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0018.TextAlignment/text-alignment-English.pdf -------------------------------------------------------------------------------- /0019.TextWrap/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0019.TextWrap/solution.py -------------------------------------------------------------------------------- /0019.TextWrap/text-wrap-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0019.TextWrap/text-wrap-English.pdf -------------------------------------------------------------------------------- /0020.DesignerDoorMat/designer-door-mat-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0020.DesignerDoorMat/designer-door-mat-English.pdf -------------------------------------------------------------------------------- /0020.DesignerDoorMat/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0020.DesignerDoorMat/solution.py -------------------------------------------------------------------------------- /0021.StringFormatting/python-string-formatting-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0021.StringFormatting/python-string-formatting-English.pdf -------------------------------------------------------------------------------- /0021.StringFormatting/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0021.StringFormatting/solution.py -------------------------------------------------------------------------------- /0022.AlphabetRangoli/alphabet-rangoli-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0022.AlphabetRangoli/alphabet-rangoli-English.pdf -------------------------------------------------------------------------------- /0022.AlphabetRangoli/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0022.AlphabetRangoli/solution.py -------------------------------------------------------------------------------- /0023.Capitalize!/capitalize-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0023.Capitalize!/capitalize-English.pdf -------------------------------------------------------------------------------- /0023.Capitalize!/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0023.Capitalize!/solution.py -------------------------------------------------------------------------------- /0024.TheMinionGame/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0024.TheMinionGame/solution.py -------------------------------------------------------------------------------- /0024.TheMinionGame/the-minion-game-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0024.TheMinionGame/the-minion-game-English.pdf -------------------------------------------------------------------------------- /0025.MergeTheTools!/merge-the-tools-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0025.MergeTheTools!/merge-the-tools-English.pdf -------------------------------------------------------------------------------- /0025.MergeTheTools!/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0025.MergeTheTools!/solution.py -------------------------------------------------------------------------------- /0026.StringSplitAndJoin/python-string-split-and-join-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0026.StringSplitAndJoin/python-string-split-and-join-English.pdf -------------------------------------------------------------------------------- /0026.StringSplitAndJoin/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0026.StringSplitAndJoin/solution.py -------------------------------------------------------------------------------- /0027.IntroductionToSets/py-introduction-to-sets-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0027.IntroductionToSets/py-introduction-to-sets-English.pdf -------------------------------------------------------------------------------- /0027.IntroductionToSets/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0027.IntroductionToSets/solution.py -------------------------------------------------------------------------------- /0028.SymmetricDifference/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0028.SymmetricDifference/solution.py -------------------------------------------------------------------------------- /0028.SymmetricDifference/symmetric-difference-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0028.SymmetricDifference/symmetric-difference-English.pdf -------------------------------------------------------------------------------- /0029.Set.Add/py-set-add-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0029.Set.Add/py-set-add-English.pdf -------------------------------------------------------------------------------- /0029.Set.Add/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0029.Set.Add/solution.py -------------------------------------------------------------------------------- /0030.Set.union/py-set-union-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0030.Set.union/py-set-union-English.pdf -------------------------------------------------------------------------------- /0030.Set.union/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0030.Set.union/solution.py -------------------------------------------------------------------------------- /0031.Set.discard(),.remove(),&.pop()/py-set-discard-remove-pop-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0031.Set.discard(),.remove(),&.pop()/py-set-discard-remove-pop-English.pdf -------------------------------------------------------------------------------- /0031.Set.discard(),.remove(),&.pop()/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0031.Set.discard(),.remove(),&.pop()/solution.py -------------------------------------------------------------------------------- /0032.Set.intersection()Operation/py-set-intersection-operation-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0032.Set.intersection()Operation/py-set-intersection-operation-English.pdf -------------------------------------------------------------------------------- /0032.Set.intersection()Operation/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0032.Set.intersection()Operation/solution.py -------------------------------------------------------------------------------- /0033.Set.difference()Operation/py-set-difference-operation-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0033.Set.difference()Operation/py-set-difference-operation-English.pdf -------------------------------------------------------------------------------- /0033.Set.difference()Operation/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0033.Set.difference()Operation/solution.py -------------------------------------------------------------------------------- /0034.Set.symmetric_difference()Operation/py-set-symmetric-difference-operation-English.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0034.Set.symmetric_difference()Operation/py-set-symmetric-difference-operation-English.pdf -------------------------------------------------------------------------------- /0034.Set.symmetric_difference()Operation/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/0034.Set.symmetric_difference()Operation/solution.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edoardottt/HackerRank-Python/HEAD/README.md --------------------------------------------------------------------------------