├── .eslintrc.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── challenges.json ├── challenges ├── 0.1.Intro │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 1.1.Print │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 1.2.Escape_Characters │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 1.3.Input │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.1.NumberTypes │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.2.Strings │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.3.Tuples │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.4.Lists │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.5.Sets │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 2.6.Dictionaries │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.1.Assignment_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.2.Equality_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.3.Inequality_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.4.Strictly_Less_Than_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.5.Less_Than_Equal_To_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.6.Greater_Than_Equal_To_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.7.Strictly_Greater_Than_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.8.False_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.9.True_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.A.Logical_And_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.B.Logical_Not_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.C.Logical_Or_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.D.Is_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.E.Is_Not_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.F.In_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 3.G.Not_In_Operator │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.1.Addition │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.2.Subtraction │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.3.Multiplication │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.4.Float_Division │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.5.Integer_Division │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.6.Exponents │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.7.Remainder │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.8.Divmod │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.9.Square_Root │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.A.Sum │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.B.Rounding │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.C.Absolute_Value │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.D.Min_Value │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 4.E.Max_Value │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 5.1.Variables │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 6.1.Conditionals │ ├── lesson.md │ ├── lesson_settings.py │ ├── lesson_tests.py │ └── main.py ├── 7.1.Loops │ ├── lesson.md │ ├── lesson_settings.py │ ├── lesson_tests.py │ └── main.py ├── 8.1.Built_In_Functions │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.2.User_Defined_Functions │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.3.Function_Documentation_Strings │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.4.Arguments_Vs_Parameters │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.5.Default_Arguments │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.6.Calling_Functions │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.7.Keyword_Arguments │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py ├── 8.8.Positional_Arguments │ ├── lesson.md │ ├── lesson_settings.json │ ├── lesson_tests.py │ └── main.py └── classroom_settings.json ├── favicon.png ├── generate-challenge-json.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.js ├── ChallengeNotFound.js ├── ChallengeView.js ├── CurriculumComplete.js ├── GetStarted.js ├── Map.js ├── Navbar.js ├── challenges.json ├── index.js ├── registerServiceWorker.js └── styles ├── App.css ├── ChallengeView.css ├── CurriculumComplete.css ├── GetStarted.css ├── Map.css ├── Navbar.css └── index.css /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/README.md -------------------------------------------------------------------------------- /challenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges.json -------------------------------------------------------------------------------- /challenges/0.1.Intro/lesson.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/0.1.Intro/lesson_settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/0.1.Intro/lesson_tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/0.1.Intro/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/1.1.Print/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.1.Print/lesson.md -------------------------------------------------------------------------------- /challenges/1.1.Print/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.1.Print/lesson_settings.json -------------------------------------------------------------------------------- /challenges/1.1.Print/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.1.Print/lesson_tests.py -------------------------------------------------------------------------------- /challenges/1.1.Print/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.1.Print/main.py -------------------------------------------------------------------------------- /challenges/1.2.Escape_Characters/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.2.Escape_Characters/lesson.md -------------------------------------------------------------------------------- /challenges/1.2.Escape_Characters/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.2.Escape_Characters/lesson_settings.json -------------------------------------------------------------------------------- /challenges/1.2.Escape_Characters/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.2.Escape_Characters/lesson_tests.py -------------------------------------------------------------------------------- /challenges/1.2.Escape_Characters/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.2.Escape_Characters/main.py -------------------------------------------------------------------------------- /challenges/1.3.Input/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.3.Input/lesson.md -------------------------------------------------------------------------------- /challenges/1.3.Input/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.3.Input/lesson_settings.json -------------------------------------------------------------------------------- /challenges/1.3.Input/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.3.Input/lesson_tests.py -------------------------------------------------------------------------------- /challenges/1.3.Input/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/1.3.Input/main.py -------------------------------------------------------------------------------- /challenges/2.1.NumberTypes/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.1.NumberTypes/lesson.md -------------------------------------------------------------------------------- /challenges/2.1.NumberTypes/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.1.NumberTypes/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.1.NumberTypes/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.1.NumberTypes/lesson_tests.py -------------------------------------------------------------------------------- /challenges/2.1.NumberTypes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.1.NumberTypes/main.py -------------------------------------------------------------------------------- /challenges/2.2.Strings/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.2.Strings/lesson.md -------------------------------------------------------------------------------- /challenges/2.2.Strings/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.2.Strings/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.2.Strings/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.2.Strings/lesson_tests.py -------------------------------------------------------------------------------- /challenges/2.2.Strings/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.2.Strings/main.py -------------------------------------------------------------------------------- /challenges/2.3.Tuples/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.3.Tuples/lesson.md -------------------------------------------------------------------------------- /challenges/2.3.Tuples/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.3.Tuples/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.3.Tuples/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.3.Tuples/lesson_tests.py -------------------------------------------------------------------------------- /challenges/2.3.Tuples/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.3.Tuples/main.py -------------------------------------------------------------------------------- /challenges/2.4.Lists/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.4.Lists/lesson.md -------------------------------------------------------------------------------- /challenges/2.4.Lists/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.4.Lists/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.4.Lists/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.4.Lists/lesson_tests.py -------------------------------------------------------------------------------- /challenges/2.4.Lists/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.4.Lists/main.py -------------------------------------------------------------------------------- /challenges/2.5.Sets/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.5.Sets/lesson.md -------------------------------------------------------------------------------- /challenges/2.5.Sets/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.5.Sets/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.5.Sets/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.5.Sets/lesson_tests.py -------------------------------------------------------------------------------- /challenges/2.5.Sets/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.5.Sets/main.py -------------------------------------------------------------------------------- /challenges/2.6.Dictionaries/lesson.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/2.6.Dictionaries/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/2.6.Dictionaries/lesson_settings.json -------------------------------------------------------------------------------- /challenges/2.6.Dictionaries/lesson_tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/2.6.Dictionaries/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/3.1.Assignment_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.1.Assignment_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.1.Assignment_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.1.Assignment_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.1.Assignment_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.1.Assignment_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.1.Assignment_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.1.Assignment_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.2.Equality_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.2.Equality_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.2.Equality_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.2.Equality_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.2.Equality_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.2.Equality_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.2.Equality_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.2.Equality_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.3.Inequality_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.3.Inequality_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.3.Inequality_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.3.Inequality_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.3.Inequality_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.3.Inequality_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.3.Inequality_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.3.Inequality_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.4.Strictly_Less_Than_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.4.Strictly_Less_Than_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.4.Strictly_Less_Than_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.4.Strictly_Less_Than_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.4.Strictly_Less_Than_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.4.Strictly_Less_Than_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.4.Strictly_Less_Than_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.4.Strictly_Less_Than_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.5.Less_Than_Equal_To_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.5.Less_Than_Equal_To_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.5.Less_Than_Equal_To_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.5.Less_Than_Equal_To_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.5.Less_Than_Equal_To_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.5.Less_Than_Equal_To_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.5.Less_Than_Equal_To_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.5.Less_Than_Equal_To_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.6.Greater_Than_Equal_To_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.6.Greater_Than_Equal_To_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.6.Greater_Than_Equal_To_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.6.Greater_Than_Equal_To_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.6.Greater_Than_Equal_To_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.6.Greater_Than_Equal_To_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.6.Greater_Than_Equal_To_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.6.Greater_Than_Equal_To_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.7.Strictly_Greater_Than_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.7.Strictly_Greater_Than_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.7.Strictly_Greater_Than_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.7.Strictly_Greater_Than_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.7.Strictly_Greater_Than_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.7.Strictly_Greater_Than_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.7.Strictly_Greater_Than_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.7.Strictly_Greater_Than_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.8.False_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.8.False_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.8.False_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.8.False_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.8.False_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.8.False_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.8.False_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.8.False_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.9.True_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.9.True_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.9.True_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.9.True_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.9.True_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.9.True_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.9.True_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.9.True_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.A.Logical_And_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.A.Logical_And_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.A.Logical_And_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.A.Logical_And_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.A.Logical_And_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.A.Logical_And_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.A.Logical_And_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.A.Logical_And_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.B.Logical_Not_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.B.Logical_Not_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.B.Logical_Not_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.B.Logical_Not_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.B.Logical_Not_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.B.Logical_Not_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.B.Logical_Not_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.B.Logical_Not_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.C.Logical_Or_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.C.Logical_Or_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.C.Logical_Or_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.C.Logical_Or_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.C.Logical_Or_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.C.Logical_Or_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.C.Logical_Or_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.C.Logical_Or_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.D.Is_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.D.Is_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.D.Is_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.D.Is_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.D.Is_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.D.Is_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.D.Is_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.D.Is_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.E.Is_Not_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.E.Is_Not_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.E.Is_Not_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.E.Is_Not_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.E.Is_Not_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.E.Is_Not_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.E.Is_Not_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.E.Is_Not_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.F.In_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.F.In_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.F.In_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.F.In_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.F.In_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.F.In_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.F.In_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.F.In_Operator/main.py -------------------------------------------------------------------------------- /challenges/3.G.Not_In_Operator/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.G.Not_In_Operator/lesson.md -------------------------------------------------------------------------------- /challenges/3.G.Not_In_Operator/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.G.Not_In_Operator/lesson_settings.json -------------------------------------------------------------------------------- /challenges/3.G.Not_In_Operator/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.G.Not_In_Operator/lesson_tests.py -------------------------------------------------------------------------------- /challenges/3.G.Not_In_Operator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/3.G.Not_In_Operator/main.py -------------------------------------------------------------------------------- /challenges/4.1.Addition/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.1.Addition/lesson.md -------------------------------------------------------------------------------- /challenges/4.1.Addition/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.1.Addition/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.1.Addition/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.1.Addition/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.1.Addition/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.1.Addition/main.py -------------------------------------------------------------------------------- /challenges/4.2.Subtraction/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.2.Subtraction/lesson.md -------------------------------------------------------------------------------- /challenges/4.2.Subtraction/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.2.Subtraction/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.2.Subtraction/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.2.Subtraction/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.2.Subtraction/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.2.Subtraction/main.py -------------------------------------------------------------------------------- /challenges/4.3.Multiplication/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.3.Multiplication/lesson.md -------------------------------------------------------------------------------- /challenges/4.3.Multiplication/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.3.Multiplication/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.3.Multiplication/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.3.Multiplication/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.3.Multiplication/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.3.Multiplication/main.py -------------------------------------------------------------------------------- /challenges/4.4.Float_Division/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.4.Float_Division/lesson.md -------------------------------------------------------------------------------- /challenges/4.4.Float_Division/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.4.Float_Division/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.4.Float_Division/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.4.Float_Division/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.4.Float_Division/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.4.Float_Division/main.py -------------------------------------------------------------------------------- /challenges/4.5.Integer_Division/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.5.Integer_Division/lesson.md -------------------------------------------------------------------------------- /challenges/4.5.Integer_Division/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.5.Integer_Division/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.5.Integer_Division/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.5.Integer_Division/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.5.Integer_Division/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.5.Integer_Division/main.py -------------------------------------------------------------------------------- /challenges/4.6.Exponents/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.6.Exponents/lesson.md -------------------------------------------------------------------------------- /challenges/4.6.Exponents/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.6.Exponents/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.6.Exponents/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.6.Exponents/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.6.Exponents/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.6.Exponents/main.py -------------------------------------------------------------------------------- /challenges/4.7.Remainder/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.7.Remainder/lesson.md -------------------------------------------------------------------------------- /challenges/4.7.Remainder/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.7.Remainder/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.7.Remainder/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.7.Remainder/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.7.Remainder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.7.Remainder/main.py -------------------------------------------------------------------------------- /challenges/4.8.Divmod/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.8.Divmod/lesson.md -------------------------------------------------------------------------------- /challenges/4.8.Divmod/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.8.Divmod/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.8.Divmod/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.8.Divmod/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.8.Divmod/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.8.Divmod/main.py -------------------------------------------------------------------------------- /challenges/4.9.Square_Root/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.9.Square_Root/lesson.md -------------------------------------------------------------------------------- /challenges/4.9.Square_Root/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.9.Square_Root/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.9.Square_Root/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.9.Square_Root/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.9.Square_Root/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.9.Square_Root/main.py -------------------------------------------------------------------------------- /challenges/4.A.Sum/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.A.Sum/lesson.md -------------------------------------------------------------------------------- /challenges/4.A.Sum/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.A.Sum/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.A.Sum/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.A.Sum/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.A.Sum/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.A.Sum/main.py -------------------------------------------------------------------------------- /challenges/4.B.Rounding/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.B.Rounding/lesson.md -------------------------------------------------------------------------------- /challenges/4.B.Rounding/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.B.Rounding/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.B.Rounding/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.B.Rounding/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.B.Rounding/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.B.Rounding/main.py -------------------------------------------------------------------------------- /challenges/4.C.Absolute_Value/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.C.Absolute_Value/lesson.md -------------------------------------------------------------------------------- /challenges/4.C.Absolute_Value/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.C.Absolute_Value/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.C.Absolute_Value/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.C.Absolute_Value/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.C.Absolute_Value/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.C.Absolute_Value/main.py -------------------------------------------------------------------------------- /challenges/4.D.Min_Value/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.D.Min_Value/lesson.md -------------------------------------------------------------------------------- /challenges/4.D.Min_Value/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.D.Min_Value/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.D.Min_Value/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.D.Min_Value/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.D.Min_Value/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.D.Min_Value/main.py -------------------------------------------------------------------------------- /challenges/4.E.Max_Value/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.E.Max_Value/lesson.md -------------------------------------------------------------------------------- /challenges/4.E.Max_Value/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.E.Max_Value/lesson_settings.json -------------------------------------------------------------------------------- /challenges/4.E.Max_Value/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.E.Max_Value/lesson_tests.py -------------------------------------------------------------------------------- /challenges/4.E.Max_Value/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/4.E.Max_Value/main.py -------------------------------------------------------------------------------- /challenges/5.1.Variables/lesson.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/5.1.Variables/lesson_settings.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/5.1.Variables/lesson_tests.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/5.1.Variables/main.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenges/6.1.Conditionals/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/6.1.Conditionals/lesson.md -------------------------------------------------------------------------------- /challenges/6.1.Conditionals/lesson_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/6.1.Conditionals/lesson_settings.py -------------------------------------------------------------------------------- /challenges/6.1.Conditionals/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/6.1.Conditionals/lesson_tests.py -------------------------------------------------------------------------------- /challenges/6.1.Conditionals/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/6.1.Conditionals/main.py -------------------------------------------------------------------------------- /challenges/7.1.Loops/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/7.1.Loops/lesson.md -------------------------------------------------------------------------------- /challenges/7.1.Loops/lesson_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/7.1.Loops/lesson_settings.py -------------------------------------------------------------------------------- /challenges/7.1.Loops/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/7.1.Loops/lesson_tests.py -------------------------------------------------------------------------------- /challenges/7.1.Loops/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/7.1.Loops/main.py -------------------------------------------------------------------------------- /challenges/8.1.Built_In_Functions/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.1.Built_In_Functions/lesson.md -------------------------------------------------------------------------------- /challenges/8.1.Built_In_Functions/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.1.Built_In_Functions/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.1.Built_In_Functions/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.1.Built_In_Functions/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.1.Built_In_Functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.1.Built_In_Functions/main.py -------------------------------------------------------------------------------- /challenges/8.2.User_Defined_Functions/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.2.User_Defined_Functions/lesson.md -------------------------------------------------------------------------------- /challenges/8.2.User_Defined_Functions/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.2.User_Defined_Functions/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.2.User_Defined_Functions/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.2.User_Defined_Functions/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.2.User_Defined_Functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.2.User_Defined_Functions/main.py -------------------------------------------------------------------------------- /challenges/8.3.Function_Documentation_Strings/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.3.Function_Documentation_Strings/lesson.md -------------------------------------------------------------------------------- /challenges/8.3.Function_Documentation_Strings/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.3.Function_Documentation_Strings/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.3.Function_Documentation_Strings/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.3.Function_Documentation_Strings/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.3.Function_Documentation_Strings/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.3.Function_Documentation_Strings/main.py -------------------------------------------------------------------------------- /challenges/8.4.Arguments_Vs_Parameters/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.4.Arguments_Vs_Parameters/lesson.md -------------------------------------------------------------------------------- /challenges/8.4.Arguments_Vs_Parameters/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.4.Arguments_Vs_Parameters/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.4.Arguments_Vs_Parameters/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.4.Arguments_Vs_Parameters/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.4.Arguments_Vs_Parameters/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.4.Arguments_Vs_Parameters/main.py -------------------------------------------------------------------------------- /challenges/8.5.Default_Arguments/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.5.Default_Arguments/lesson.md -------------------------------------------------------------------------------- /challenges/8.5.Default_Arguments/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.5.Default_Arguments/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.5.Default_Arguments/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.5.Default_Arguments/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.5.Default_Arguments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.5.Default_Arguments/main.py -------------------------------------------------------------------------------- /challenges/8.6.Calling_Functions/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.6.Calling_Functions/lesson.md -------------------------------------------------------------------------------- /challenges/8.6.Calling_Functions/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.6.Calling_Functions/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.6.Calling_Functions/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.6.Calling_Functions/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.6.Calling_Functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.6.Calling_Functions/main.py -------------------------------------------------------------------------------- /challenges/8.7.Keyword_Arguments/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.7.Keyword_Arguments/lesson.md -------------------------------------------------------------------------------- /challenges/8.7.Keyword_Arguments/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.7.Keyword_Arguments/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.7.Keyword_Arguments/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.7.Keyword_Arguments/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.7.Keyword_Arguments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.7.Keyword_Arguments/main.py -------------------------------------------------------------------------------- /challenges/8.8.Positional_Arguments/lesson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.8.Positional_Arguments/lesson.md -------------------------------------------------------------------------------- /challenges/8.8.Positional_Arguments/lesson_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.8.Positional_Arguments/lesson_settings.json -------------------------------------------------------------------------------- /challenges/8.8.Positional_Arguments/lesson_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.8.Positional_Arguments/lesson_tests.py -------------------------------------------------------------------------------- /challenges/8.8.Positional_Arguments/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/8.8.Positional_Arguments/main.py -------------------------------------------------------------------------------- /challenges/classroom_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/challenges/classroom_settings.json -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/favicon.png -------------------------------------------------------------------------------- /generate-challenge-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/generate-challenge-json.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/App.js -------------------------------------------------------------------------------- /src/ChallengeNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/ChallengeNotFound.js -------------------------------------------------------------------------------- /src/ChallengeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/ChallengeView.js -------------------------------------------------------------------------------- /src/CurriculumComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/CurriculumComplete.js -------------------------------------------------------------------------------- /src/GetStarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/GetStarted.js -------------------------------------------------------------------------------- /src/Map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/Map.js -------------------------------------------------------------------------------- /src/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/Navbar.js -------------------------------------------------------------------------------- /src/challenges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/challenges.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/App.css -------------------------------------------------------------------------------- /src/styles/ChallengeView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/ChallengeView.css -------------------------------------------------------------------------------- /src/styles/CurriculumComplete.css: -------------------------------------------------------------------------------- 1 | .curriculum-complete { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/styles/GetStarted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/GetStarted.css -------------------------------------------------------------------------------- /src/styles/Map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/Map.css -------------------------------------------------------------------------------- /src/styles/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/Navbar.css -------------------------------------------------------------------------------- /src/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/python-coding-challenges/HEAD/src/styles/index.css --------------------------------------------------------------------------------