├── 30-Days-of-Code ├── day-00.py ├── day-01.py ├── day-02.py ├── day-03.py ├── day-04.py ├── day-10.py ├── day-11.py ├── day-12.py ├── day-13.py ├── day-14.py ├── day-15.py ├── day-16.py ├── day-17.py ├── day-18.py ├── day-5.py ├── day-6.py ├── day-7.py ├── day-8.py └── day-9.py ├── Problem-Solving ├── Algorithms │ └── Warmup │ │ ├── a-very-big-sum.py │ │ ├── compare-the-triplets.py │ │ ├── mini-max-sum.py │ │ ├── plus-minus.py │ │ ├── simple-array-sum.py │ │ └── staircase.py └── Data-Structures │ ├── Arrays │ ├── 2D-arrays-ds.py │ └── arrays-ds.py │ └── Linked-Lists │ └── print-the-elements-of-a-linked-list.py ├── Python ├── Basic-Data-Types │ ├── find-the-percentage.py │ ├── find-the-runner-up-score.py │ ├── list-comprehensions.py │ ├── list.py │ ├── nested-lists.py │ └── tuples.py ├── Collections │ ├── Collections.deque().py │ ├── Collections.namedtuple().py │ ├── collections.Counter().py │ ├── collections.OrderedDict().py │ ├── company-logo.py │ ├── defaultDict-tutorial.py │ └── word-order.py ├── Date-and-Time │ └── calendar-module.py ├── Introduction │ ├── Hello-World.py │ ├── arithmetic-operators.py │ ├── division.py │ ├── function.py │ ├── if-else.py │ ├── loops.py │ └── print-function.py ├── Math │ ├── divmod.py │ ├── find-angle.py │ ├── integers-come-in-all-sizes.py │ ├── mod-power.py │ ├── polar-coordinates.py │ ├── triangle-quest.py │ └── triangle-quest2.py ├── Sets │ ├── check-strict-superset.py │ ├── check-subset.py │ ├── no-idea.py │ ├── set-mutations.py │ ├── set-operations.py │ ├── set.add().py │ ├── set.difference().py │ ├── set.intersection().py │ ├── set.symmetric_diffference().py │ ├── set.union().py │ ├── sets.py │ ├── symmetric-difference.py │ └── the-captains-room.py ├── Strings │ ├── alphabet-rangoli.py │ ├── capitalize.py │ ├── designer-door-mat.py │ ├── find-a-string.py │ ├── merge-the-tools.py │ ├── mutations.py │ ├── string-formatting.py │ ├── string-split-and-join.py │ ├── string-validators.py │ ├── swap-case.py │ ├── text-alignment.py │ ├── text-wrap.py │ ├── the-minion-game.py │ └── whats-your-name?.py ├── exceptions.py └── itertools │ ├── compress-the-string.py │ ├── iterables-and-iterators.py │ ├── itertools.combinations().py │ ├── itertools.permutations().py │ ├── itertools.product().py │ ├── maximize-it.py │ └── tertools.combinations_with_replacement().py └── README.md /30-Days-of-Code/day-00.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-00.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-01.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-02.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-03.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-04.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-10.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-11.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-12.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-13.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-14.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-15.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-16.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-17.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-18.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-5.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-6.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-7.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-8.py -------------------------------------------------------------------------------- /30-Days-of-Code/day-9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/30-Days-of-Code/day-9.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/a-very-big-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/a-very-big-sum.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/compare-the-triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/compare-the-triplets.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/mini-max-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/mini-max-sum.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/plus-minus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/plus-minus.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/simple-array-sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/simple-array-sum.py -------------------------------------------------------------------------------- /Problem-Solving/Algorithms/Warmup/staircase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Algorithms/Warmup/staircase.py -------------------------------------------------------------------------------- /Problem-Solving/Data-Structures/Arrays/2D-arrays-ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Data-Structures/Arrays/2D-arrays-ds.py -------------------------------------------------------------------------------- /Problem-Solving/Data-Structures/Arrays/arrays-ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Data-Structures/Arrays/arrays-ds.py -------------------------------------------------------------------------------- /Problem-Solving/Data-Structures/Linked-Lists/print-the-elements-of-a-linked-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Problem-Solving/Data-Structures/Linked-Lists/print-the-elements-of-a-linked-list.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/find-the-percentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/find-the-percentage.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/find-the-runner-up-score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/find-the-runner-up-score.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/list-comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/list-comprehensions.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/list.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/nested-lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/nested-lists.py -------------------------------------------------------------------------------- /Python/Basic-Data-Types/tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Basic-Data-Types/tuples.py -------------------------------------------------------------------------------- /Python/Collections/Collections.deque().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/Collections.deque().py -------------------------------------------------------------------------------- /Python/Collections/Collections.namedtuple().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/Collections.namedtuple().py -------------------------------------------------------------------------------- /Python/Collections/collections.Counter().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/collections.Counter().py -------------------------------------------------------------------------------- /Python/Collections/collections.OrderedDict().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/collections.OrderedDict().py -------------------------------------------------------------------------------- /Python/Collections/company-logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/company-logo.py -------------------------------------------------------------------------------- /Python/Collections/defaultDict-tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/defaultDict-tutorial.py -------------------------------------------------------------------------------- /Python/Collections/word-order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Collections/word-order.py -------------------------------------------------------------------------------- /Python/Date-and-Time/calendar-module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Date-and-Time/calendar-module.py -------------------------------------------------------------------------------- /Python/Introduction/Hello-World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/Hello-World.py -------------------------------------------------------------------------------- /Python/Introduction/arithmetic-operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/arithmetic-operators.py -------------------------------------------------------------------------------- /Python/Introduction/division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/division.py -------------------------------------------------------------------------------- /Python/Introduction/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/function.py -------------------------------------------------------------------------------- /Python/Introduction/if-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/if-else.py -------------------------------------------------------------------------------- /Python/Introduction/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/loops.py -------------------------------------------------------------------------------- /Python/Introduction/print-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Introduction/print-function.py -------------------------------------------------------------------------------- /Python/Math/divmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/divmod.py -------------------------------------------------------------------------------- /Python/Math/find-angle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/find-angle.py -------------------------------------------------------------------------------- /Python/Math/integers-come-in-all-sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/integers-come-in-all-sizes.py -------------------------------------------------------------------------------- /Python/Math/mod-power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/mod-power.py -------------------------------------------------------------------------------- /Python/Math/polar-coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/polar-coordinates.py -------------------------------------------------------------------------------- /Python/Math/triangle-quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/triangle-quest.py -------------------------------------------------------------------------------- /Python/Math/triangle-quest2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Math/triangle-quest2.py -------------------------------------------------------------------------------- /Python/Sets/check-strict-superset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/check-strict-superset.py -------------------------------------------------------------------------------- /Python/Sets/check-subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/check-subset.py -------------------------------------------------------------------------------- /Python/Sets/no-idea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/no-idea.py -------------------------------------------------------------------------------- /Python/Sets/set-mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set-mutations.py -------------------------------------------------------------------------------- /Python/Sets/set-operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set-operations.py -------------------------------------------------------------------------------- /Python/Sets/set.add().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set.add().py -------------------------------------------------------------------------------- /Python/Sets/set.difference().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set.difference().py -------------------------------------------------------------------------------- /Python/Sets/set.intersection().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set.intersection().py -------------------------------------------------------------------------------- /Python/Sets/set.symmetric_diffference().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set.symmetric_diffference().py -------------------------------------------------------------------------------- /Python/Sets/set.union().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/set.union().py -------------------------------------------------------------------------------- /Python/Sets/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/sets.py -------------------------------------------------------------------------------- /Python/Sets/symmetric-difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/symmetric-difference.py -------------------------------------------------------------------------------- /Python/Sets/the-captains-room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Sets/the-captains-room.py -------------------------------------------------------------------------------- /Python/Strings/alphabet-rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/alphabet-rangoli.py -------------------------------------------------------------------------------- /Python/Strings/capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/capitalize.py -------------------------------------------------------------------------------- /Python/Strings/designer-door-mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/designer-door-mat.py -------------------------------------------------------------------------------- /Python/Strings/find-a-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/find-a-string.py -------------------------------------------------------------------------------- /Python/Strings/merge-the-tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/merge-the-tools.py -------------------------------------------------------------------------------- /Python/Strings/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/mutations.py -------------------------------------------------------------------------------- /Python/Strings/string-formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/string-formatting.py -------------------------------------------------------------------------------- /Python/Strings/string-split-and-join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/string-split-and-join.py -------------------------------------------------------------------------------- /Python/Strings/string-validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/string-validators.py -------------------------------------------------------------------------------- /Python/Strings/swap-case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/swap-case.py -------------------------------------------------------------------------------- /Python/Strings/text-alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/text-alignment.py -------------------------------------------------------------------------------- /Python/Strings/text-wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/text-wrap.py -------------------------------------------------------------------------------- /Python/Strings/the-minion-game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/the-minion-game.py -------------------------------------------------------------------------------- /Python/Strings/whats-your-name?.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/Strings/whats-your-name?.py -------------------------------------------------------------------------------- /Python/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/exceptions.py -------------------------------------------------------------------------------- /Python/itertools/compress-the-string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/compress-the-string.py -------------------------------------------------------------------------------- /Python/itertools/iterables-and-iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/iterables-and-iterators.py -------------------------------------------------------------------------------- /Python/itertools/itertools.combinations().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/itertools.combinations().py -------------------------------------------------------------------------------- /Python/itertools/itertools.permutations().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/itertools.permutations().py -------------------------------------------------------------------------------- /Python/itertools/itertools.product().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/itertools.product().py -------------------------------------------------------------------------------- /Python/itertools/maximize-it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/maximize-it.py -------------------------------------------------------------------------------- /Python/itertools/tertools.combinations_with_replacement().py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/Python/itertools/tertools.combinations_with_replacement().py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Palak0519/HackerRank-Solutions-1/HEAD/README.md --------------------------------------------------------------------------------