|
1 | 1 |
|
2 | 2 | - Introduction
|
3 |
| - - [Say Hello, World! With Python](Introduction\SayHelloWorldWithPython.py) |
4 |
| - - [Reading Raw Input](Introduction\ReadingRawInput.py) |
5 |
| - - [Python If-Else](Introduction\PythonIfElse.py) |
6 |
| - - [Arithmetic Operators](Introduction\ArithmeticOperators.py) |
7 |
| - - [Python: Division](Introduction\PythonDivision.py) |
8 |
| - - [Loops](Introduction\Loops.py) |
9 |
| - - [Write a function](Introduction\Writeafunction.py) |
10 |
| - - [Print Function](Introduction\PrintFunction.py) |
| 3 | + - [Say Hello, World! With Python](Introduction/SayHelloWorldWithPython.py) |
| 4 | + - [Reading Raw Input](Introduction/ReadingRawInput.py) |
| 5 | + - [Python If-Else](Introduction/PythonIfElse.py) |
| 6 | + - [Arithmetic Operators](Introduction/ArithmeticOperators.py) |
| 7 | + - [Python: Division](Introduction/PythonDivision.py) |
| 8 | + - [Loops](Introduction/Loops.py) |
| 9 | + - [Write a function](Introduction/Writeafunction.py) |
| 10 | + - [Print Function](Introduction/PrintFunction.py) |
11 | 11 | - Basic Data Types
|
12 |
| - - [Lists](BasicDataTypes\Lists.py) |
13 |
| - - [Tuples](BasicDataTypes\Tuples.py) |
14 |
| - - [Sets - Symmetric Difference](BasicDataTypes\SetsSymmetricDifference.py) |
15 |
| - - [List Comprehensions](BasicDataTypes\ListComprehensions.py) |
16 |
| - - [Find the Second Largest Number](BasicDataTypes\FindtheSecondLargestNumber.py) |
17 |
| - - [Nested Lists](BasicDataTypes\NestedLists.py) |
18 |
| - - [Finding the percentage](BasicDataTypes\Findingthepercentage.py) |
| 12 | + - [Lists](BasicDataTypes/Lists.py) |
| 13 | + - [Tuples](BasicDataTypes/Tuples.py) |
| 14 | + - [Sets - Symmetric Difference](BasicDataTypes/SetsSymmetricDifference.py) |
| 15 | + - [List Comprehensions](BasicDataTypes/ListComprehensions.py) |
| 16 | + - [Find the Second Largest Number](BasicDataTypes/FindtheSecondLargestNumber.py) |
| 17 | + - [Nested Lists](BasicDataTypes/NestedLists.py) |
| 18 | + - [Finding the percentage](BasicDataTypes/Findingthepercentage.py) |
19 | 19 | - Strings
|
20 |
| - - [sWAP cASE](Strings\sWAPcASE.py) |
21 |
| - - [String Split and Join](Strings\StringSplitandJoin.py) |
22 |
| - - [Whats Your Name?](Strings\WhatsYourName.py) |
23 |
| - - [Mutations](Strings\Mutations.py) |
24 |
| - - [Find a string](Strings\Findastring.py) |
25 |
| - - [String Validators](Strings\StringValidators.py) |
26 |
| - - [Text Alignment](Strings\TextAlignment.py) |
27 |
| - - [Text Wrap](Strings\TextWrap.py) |
28 |
| - - [Designer Door Mat](Strings\DesignerDoorMat.py) |
29 |
| - - [String Formatting](Strings\StringFormatting.py) |
30 |
| - - [Alphabet Rangoli](Strings\AlphabetRangoli.py) |
31 |
| - - [Capitalize!](Strings\Capitalize.py) |
32 |
| - - [The Minion Game](Strings\TheMinionGame.py) |
| 20 | + - [sWAP cASE](Strings/sWAPcASE.py) |
| 21 | + - [String Split and Join](Strings/StringSplitandJoin.py) |
| 22 | + - [Whats Your Name?](Strings/WhatsYourName.py) |
| 23 | + - [Mutations](Strings/Mutations.py) |
| 24 | + - [Find a string](Strings/Findastring.py) |
| 25 | + - [String Validators](Strings/StringValidators.py) |
| 26 | + - [Text Alignment](Strings/TextAlignment.py) |
| 27 | + - [Text Wrap](Strings/TextWrap.py) |
| 28 | + - [Designer Door Mat](Strings/DesignerDoorMat.py) |
| 29 | + - [String Formatting](Strings/StringFormatting.py) |
| 30 | + - [Alphabet Rangoli](Strings/AlphabetRangoli.py) |
| 31 | + - [Capitalize!](Strings/Capitalize.py) |
| 32 | + - [The Minion Game](Strings/TheMinionGame.py) |
33 | 33 | - Sets
|
34 |
| - - [Introduction to Sets](Sets\IntroductiontoSets.py) |
35 |
| - - [Symmetric Difference](Sets\SymmetricDifference.py) |
36 |
| - - [No Idea!](Sets\NoIdea.py) |
37 |
| - - [Set .add()](Sets\Setadd.py) |
38 |
| - - [Set .discard(), .remove() & .pop()](Sets\Setdiscardremoveamppop.py) |
39 |
| - - [Set .union() Operation](Sets\SetunionOperation.py) |
40 |
| - - [Set .intersection() Operation](Sets\SetintersectionOperation.py) |
41 |
| - - [Set .difference() Operation](Sets\SetdifferenceOperation.py) |
42 |
| - - [Set .symmetric_difference() Operation](Sets\Setsymmetric_differenceOperation.py) |
43 |
| - - [Set Mutations](Sets\SetMutations.py) |
44 |
| - - [The Captains Room](Sets\TheCaptainsRoom.py) |
45 |
| - - [Check Subset](Sets\CheckSubset.py) |
46 |
| - - [Check Strict Superset](Sets\CheckStrictSuperset.py) |
| 34 | + - [Introduction to Sets](Sets/IntroductiontoSets.py) |
| 35 | + - [Symmetric Difference](Sets/SymmetricDifference.py) |
| 36 | + - [No Idea!](Sets/NoIdea.py) |
| 37 | + - [Set .add()](Sets/Setadd.py) |
| 38 | + - [Set .discard(), .remove() & .pop()](Sets/Setdiscardremoveamppop.py) |
| 39 | + - [Set .union() Operation](Sets/SetunionOperation.py) |
| 40 | + - [Set .intersection() Operation](Sets/SetintersectionOperation.py) |
| 41 | + - [Set .difference() Operation](Sets/SetdifferenceOperation.py) |
| 42 | + - [Set .symmetric_difference() Operation](Sets/Setsymmetric_differenceOperation.py) |
| 43 | + - [Set Mutations](Sets/SetMutations.py) |
| 44 | + - [The Captains Room](Sets/TheCaptainsRoom.py) |
| 45 | + - [Check Subset](Sets/CheckSubset.py) |
| 46 | + - [Check Strict Superset](Sets/CheckStrictSuperset.py) |
47 | 47 | - Math
|
48 |
| - - [Polar Coordinates](Math\PolarCoordinates.py) |
49 |
| - - [Find Angle MBC](Math\FindAngleMBC.py) |
50 |
| - - [Triangle Quest 2](Math\TriangleQuest2.py) |
51 |
| - - [Mod Divmod](Math\ModDivmod.py) |
52 |
| - - [Power - Mod Power](Math\PowerModPower.py) |
53 |
| - - [Integers Come In All Sizes](Math\IntegersComeInAllSizes.py) |
54 |
| - - [Triangle Quest](Math\TriangleQuest.py) |
| 48 | + - [Polar Coordinates](Math/PolarCoordinates.py) |
| 49 | + - [Find Angle MBC](Math/FindAngleMBC.py) |
| 50 | + - [Triangle Quest 2](Math/TriangleQuest2.py) |
| 51 | + - [Mod Divmod](Math/ModDivmod.py) |
| 52 | + - [Power - Mod Power](Math/PowerModPower.py) |
| 53 | + - [Integers Come In All Sizes](Math/IntegersComeInAllSizes.py) |
| 54 | + - [Triangle Quest](Math/TriangleQuest.py) |
55 | 55 | - Itertools
|
56 |
| - - [itertools.product()](Itertools\itertoolsproduct.py) |
57 |
| - - [itertools.permutations()](Itertools\itertoolspermutations.py) |
58 |
| - - [itertools.combinations()](Itertools\itertoolscombinations.py) |
59 |
| - - [itertools.combinations_with_replacement()](Itertools\itertoolscombinations_with_replacement.py) |
60 |
| - - [Compress the String!](Itertools\CompresstheString.py) |
61 |
| - - [Iterables and Iterators](Itertools\IterablesandIterators.py) |
62 |
| - - [Maximize It!](Itertools\MaximizeIt.py) |
| 56 | + - [itertools.product()](Itertools/itertoolsproduct.py) |
| 57 | + - [itertools.permutations()](Itertools/itertoolspermutations.py) |
| 58 | + - [itertools.combinations()](Itertools/itertoolscombinations.py) |
| 59 | + - [itertools.combinations_with_replacement()](Itertools/itertoolscombinations_with_replacement.py) |
| 60 | + - [Compress the String!](Itertools/CompresstheString.py) |
| 61 | + - [Iterables and Iterators](Itertools/IterablesandIterators.py) |
| 62 | + - [Maximize It!](Itertools/MaximizeIt.py) |
63 | 63 | - Collections
|
64 |
| - - [collections.Counter()](Collections\collectionsCounter.py) |
65 |
| - - [DefaultDict Tutorial](Collections\DefaultDictTutorial.py) |
66 |
| - - [Collections.namedtuple()](Collections\Collectionsnamedtuple.py) |
67 |
| - - [Collections.OrderedDict()](Collections\CollectionsOrderedDict.py) |
68 |
| - - [Word Order](Collections\WordOrder.py) |
69 |
| - - [Collections.deque()](Collections\Collectionsdeque.py) |
70 |
| - - [Piling Up!](Collections\PilingUp.py) |
71 |
| - - [Most Common](Collections\MostCommon.py) |
| 64 | + - [collections.Counter()](Collections/collectionsCounter.py) |
| 65 | + - [DefaultDict Tutorial](Collections/DefaultDictTutorial.py) |
| 66 | + - [Collections.namedtuple()](Collections/Collectionsnamedtuple.py) |
| 67 | + - [Collections.OrderedDict()](Collections/CollectionsOrderedDict.py) |
| 68 | + - [Word Order](Collections/WordOrder.py) |
| 69 | + - [Collections.deque()](Collections/Collectionsdeque.py) |
| 70 | + - [Piling Up!](Collections/PilingUp.py) |
| 71 | + - [Most Common](Collections/MostCommon.py) |
72 | 72 | - Date and Time
|
73 |
| - - [Calendar Module](DateandTime\CalendarModule.py) |
74 |
| - - [Time Delta](DateandTime\TimeDelta.py) |
| 73 | + - [Calendar Module](DateandTime/CalendarModule.py) |
| 74 | + - [Time Delta](DateandTime/TimeDelta.py) |
75 | 75 | - Errors and Exceptions
|
76 |
| - - [Exceptions](ErrorsandExceptions\Exceptions.py) |
77 |
| - - [Incorrect Regex](ErrorsandExceptions\IncorrectRegex.py) |
| 76 | + - [Exceptions](ErrorsandExceptions/Exceptions.py) |
| 77 | + - [Incorrect Regex](ErrorsandExceptions/IncorrectRegex.py) |
78 | 78 | - Classes
|
79 |
| - - [Classes: Dealing with Complex Numbers](Classes\ClassesDealingwithComplexNumbers.py) |
80 |
| - - [Class 2 - Find the Torsional Angle](Classes\Class2FindtheTorsionalAngle.py) |
| 79 | + - [Classes: Dealing with Complex Numbers](Classes/ClassesDealingwithComplexNumbers.py) |
| 80 | + - [Class 2 - Find the Torsional Angle](Classes/Class2FindtheTorsionalAngle.py) |
81 | 81 | - Built-Ins
|
82 |
| - - [Zipped!](BuiltIns\Zipped.py) |
83 |
| - - [Input()](BuiltIns\Input.py) |
84 |
| - - [Python Evaluation](BuiltIns\PythonEvaluation.py) |
85 |
| - - [Sort Data](BuiltIns\SortData.py) |
86 |
| - - [Any or All](BuiltIns\AnyorAll.py) |
87 |
| - - [ginortS](BuiltIns\ginortS.py) |
| 82 | + - [Zipped!](BuiltIns/Zipped.py) |
| 83 | + - [Input()](BuiltIns/Input.py) |
| 84 | + - [Python Evaluation](BuiltIns/PythonEvaluation.py) |
| 85 | + - [Sort Data](BuiltIns/SortData.py) |
| 86 | + - [Any or All](BuiltIns/AnyorAll.py) |
| 87 | + - [ginortS](BuiltIns/ginortS.py) |
88 | 88 | - Python Functionals
|
89 |
| - - [Map and Lambda Function](PythonFunctionals\MapandLambdaFunction.py) |
90 |
| - - [Validating Email Addresses With a Filter](PythonFunctionals\ValidatingEmailAddressesWithaFilter.py) |
| 89 | + - [Map and Lambda Function](PythonFunctionals/MapandLambdaFunction.py) |
| 90 | + - [Validating Email Addresses With a Filter](PythonFunctionals/ValidatingEmailAddressesWithaFilter.py) |
91 | 91 | - Regex and Parsing
|
92 |
| - - [Introduction to Regex Module](RegexandParsing\IntroductiontoRegexModule.py) |
93 |
| - - [Re.split()](RegexandParsing\Resplit.py) |
94 |
| - - [Group(), Groups() & Groupdict()](RegexandParsing\GroupGroupsampGroupdict.py) |
95 |
| - - [Re.findall() & Re.finditer()](RegexandParsing\RefindallampRefinditer.py) |
96 |
| - - [Re.start() & Re.end()](RegexandParsing\RestartampReend.py) |
97 |
| - - [Regex Substitution](RegexandParsing\RegexSubstitution.py) |
98 |
| - - [Validating Roman Numerals](RegexandParsing\ValidatingRomanNumerals.py) |
99 |
| - - [Validating phone numbers](RegexandParsing\Validatingphonenumbers.py) |
100 |
| - - [Validating and Parsing Email Addresses](RegexandParsing\ValidatingandParsingEmailAddresses.py) |
101 |
| - - [Hex Color Code](RegexandParsing\HexColorCode.py) |
102 |
| - - [HTML Parser - Part 1](RegexandParsing\HTMLParserPart1.py) |
103 |
| - - [HTML Parser - Part 2](RegexandParsing\HTMLParserPart2.py) |
104 |
| - - [Detect HTML Tags, Attributes and Attribute Values](RegexandParsing\DetectHTMLTagsAttributesandAttributeValues.py) |
105 |
| - - [Validating UID](RegexandParsing\ValidatingUID.py) |
106 |
| - - [Validating Credit Card Numbers](RegexandParsing\ValidatingCreditCardNumbers.py) |
107 |
| - - [Validating Postal Codes](RegexandParsing\ValidatingPostalCodes.py) |
108 |
| - - [Matrix Script](RegexandParsing\MatrixScript.py) |
| 92 | + - [Introduction to Regex Module](RegexandParsing/IntroductiontoRegexModule.py) |
| 93 | + - [Re.split()](RegexandParsing/Resplit.py) |
| 94 | + - [Group(), Groups() & Groupdict()](RegexandParsing/GroupGroupsampGroupdict.py) |
| 95 | + - [Re.findall() & Re.finditer()](RegexandParsing/RefindallampRefinditer.py) |
| 96 | + - [Re.start() & Re.end()](RegexandParsing/RestartampReend.py) |
| 97 | + - [Regex Substitution](RegexandParsing/RegexSubstitution.py) |
| 98 | + - [Validating Roman Numerals](RegexandParsing/ValidatingRomanNumerals.py) |
| 99 | + - [Validating phone numbers](RegexandParsing/Validatingphonenumbers.py) |
| 100 | + - [Validating and Parsing Email Addresses](RegexandParsing/ValidatingandParsingEmailAddresses.py) |
| 101 | + - [Hex Color Code](RegexandParsing/HexColorCode.py) |
| 102 | + - [HTML Parser - Part 1](RegexandParsing/HTMLParserPart1.py) |
| 103 | + - [HTML Parser - Part 2](RegexandParsing/HTMLParserPart2.py) |
| 104 | + - [Detect HTML Tags, Attributes and Attribute Values](RegexandParsing/DetectHTMLTagsAttributesandAttributeValues.py) |
| 105 | + - [Validating UID](RegexandParsing/ValidatingUID.py) |
| 106 | + - [Validating Credit Card Numbers](RegexandParsing/ValidatingCreditCardNumbers.py) |
| 107 | + - [Validating Postal Codes](RegexandParsing/ValidatingPostalCodes.py) |
| 108 | + - [Matrix Script](RegexandParsing/MatrixScript.py) |
109 | 109 | - XML
|
110 |
| - - [XML 1 - Find the Score](XML\XML1FindtheScore.py) |
111 |
| - - [XML2 - Find the Maximum Depth](XML\XML2FindtheMaximumDepth.py) |
| 110 | + - [XML 1 - Find the Score](XML/XML1FindtheScore.py) |
| 111 | + - [XML2 - Find the Maximum Depth](XML/XML2FindtheMaximumDepth.py) |
112 | 112 | - Closures and Decorators
|
113 |
| - - [Standardize Mobile Number Using Decorators](ClosuresandDecorators\StandardizeMobileNumberUsingDecorators.py) |
114 |
| - - [Decorators 2 - Name Directory](ClosuresandDecorators\Decorators2NameDirectory.py) |
| 113 | + - [Standardize Mobile Number Using Decorators](ClosuresandDecorators/StandardizeMobileNumberUsingDecorators.py) |
| 114 | + - [Decorators 2 - Name Directory](ClosuresandDecorators/Decorators2NameDirectory.py) |
115 | 115 | - Numpy
|
116 |
| - - [Arrays](Numpy\Arrays.py) |
117 |
| - - [Shape and Reshape](Numpy\ShapeandReshape.py) |
118 |
| - - [Transpose and Flatten](Numpy\TransposeandFlatten.py) |
119 |
| - - [Concatenate](Numpy\Concatenate.py) |
120 |
| - - [Zeros and Ones](Numpy\ZerosandOnes.py) |
121 |
| - - [Eye and Identity](Numpy\EyeandIdentity.py) |
122 |
| - - [Array Mathematics](Numpy\ArrayMathematics.py) |
123 |
| - - [Floor, Ceil and Rint](Numpy\FloorCeilandRint.py) |
124 |
| - - [Sum and Prod](Numpy\SumandProd.py) |
125 |
| - - [Min and Max](Numpy\MinandMax.py) |
126 |
| - - [Mean, Var, and Std](Numpy\MeanVarandStd.py) |
127 |
| - - [Dot and Cross](Numpy\DotandCross.py) |
128 |
| - - [Inner and Outer](Numpy\InnerandOuter.py) |
129 |
| - - [Polynomials](Numpy\Polynomials.py) |
130 |
| - - [Linear Algebra](Numpy\LinearAlgebra.py) |
| 116 | + - [Arrays](Numpy/Arrays.py) |
| 117 | + - [Shape and Reshape](Numpy/ShapeandReshape.py) |
| 118 | + - [Transpose and Flatten](Numpy/TransposeandFlatten.py) |
| 119 | + - [Concatenate](Numpy/Concatenate.py) |
| 120 | + - [Zeros and Ones](Numpy/ZerosandOnes.py) |
| 121 | + - [Eye and Identity](Numpy/EyeandIdentity.py) |
| 122 | + - [Array Mathematics](Numpy/ArrayMathematics.py) |
| 123 | + - [Floor, Ceil and Rint](Numpy/FloorCeilandRint.py) |
| 124 | + - [Sum and Prod](Numpy/SumandProd.py) |
| 125 | + - [Min and Max](Numpy/MinandMax.py) |
| 126 | + - [Mean, Var, and Std](Numpy/MeanVarandStd.py) |
| 127 | + - [Dot and Cross](Numpy/DotandCross.py) |
| 128 | + - [Inner and Outer](Numpy/InnerandOuter.py) |
| 129 | + - [Polynomials](Numpy/Polynomials.py) |
| 130 | + - [Linear Algebra](Numpy/LinearAlgebra.py) |
131 | 131 | - Debugging
|
132 |
| - - [Words Score](Debugging\WordsScore.py) |
133 |
| - - [Default Arguments](Debugging\DefaultArguments.py) |
| 132 | + - [Words Score](Debugging/WordsScore.py) |
| 133 | + - [Default Arguments](Debugging/DefaultArguments.py) |
0 commit comments