From 470297027d74b07cf7af4538ddd1d49c9b2da43a Mon Sep 17 00:00:00 2001 From: HenMoshe <91905102+HenMoshe@users.noreply.github.com> Date: Tue, 1 Mar 2022 17:10:03 +0200 Subject: [PATCH] fix(curriculum): remove outdated text (#45290) --- .../arithmetic-formatter.md | 5 ----- .../scientific-computing-with-python-projects/budget-app.md | 6 ------ .../polygon-area-calculator.md | 6 ------ .../probability-calculator.md | 6 ------ .../time-calculator.md | 6 ------ 5 files changed, 29 deletions(-) diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md index e6027e8d63..1493b4cf9c 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/arithmetic-formatter.md @@ -10,11 +10,6 @@ dashedName: arithmetic-formatter You will be [working on this project with our Replit starter code](https://replit.com/github/freeCodeCamp/boilerplate-arithmetic-formatter). -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: - -- [Python for Everybody Video Course](https://www.freecodecamp.org/news/python-for-everybody/) (14 hours) -- [Learn Python Video Course](https://www.freecodecamp.org/news/learn-python-video-course/) (10 hours) - # --instructions-- Students in primary school often arrange arithmetic problems vertically to make them easier to solve. For example, "235 + 52" becomes: diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/budget-app.md b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/budget-app.md index b9e5ce3899..1dd2cec3e5 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/budget-app.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/budget-app.md @@ -9,13 +9,7 @@ dashedName: budget-app # --description-- You will be [working on this project with our Replit starter code](https://replit.com/github/freeCodeCamp/boilerplate-budget-app). - -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: - -- [Python for Everybody Video Course](https://www.freecodecamp.org/news/python-for-everybody/) (14 hours) -- [Learn Python Video Course](https://www.freecodecamp.org/news/learn-python-video-course/) (10 hours) - # --instructions-- Complete the `Category` class in `budget.py`. It should be able to instantiate objects based on different budget categories like *food*, *clothing*, and *entertainment*. When objects are created, they are passed in the name of the category. The class should have an instance variable called `ledger` that is a list. The class should also contain the following methods: diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/polygon-area-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/polygon-area-calculator.md index 0e4867ed29..6b8f4beea0 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/polygon-area-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/polygon-area-calculator.md @@ -10,12 +10,6 @@ dashedName: polygon-area-calculator You will be [working on this project with our Replit starter code](https://replit.com/github/freeCodeCamp/boilerplate-polygon-area-calculator). -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: - -- [Python for Everybody Video Course](https://www.freecodecamp.org/news/python-for-everybody/) (14 hours) - -- [Learn Python Video Course](https://www.freecodecamp.org/news/learn-python-video-course/) (10 hours) - # --instructions-- In this project you will use object oriented programming to create a Rectangle class and a Square class. The Square class should be a subclass of Rectangle and inherit methods and attributes. diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/probability-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/probability-calculator.md index 263ad72431..24abc5933f 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/probability-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/probability-calculator.md @@ -10,12 +10,6 @@ dashedName: probability-calculator You will be [working on this project with our Replit starter code](https://replit.com/github/freeCodeCamp/boilerplate-probability-calculator). -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: - -- [Python for Everybody Video Course](https://www.freecodecamp.org/news/python-for-everybody/) (14 hours) - -- [Learn Python Video Course](https://www.freecodecamp.org/news/learn-python-video-course/) (10 hours) - # --instructions-- Suppose there is a hat containing 5 blue balls, 4 red balls, and 2 green balls. What is the probability that a random draw of 4 balls will contain at least 1 red ball and 2 green balls? While it would be possible to calculate the probability using advanced mathematics, an easier way is to write a program to perform a large number of experiments to estimate an approximate probability. diff --git a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/time-calculator.md b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/time-calculator.md index f1143e4ba5..9c447d8873 100644 --- a/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/time-calculator.md +++ b/curriculum/challenges/english/07-scientific-computing-with-python/scientific-computing-with-python-projects/time-calculator.md @@ -10,12 +10,6 @@ dashedName: time-calculator You will be [working on this project with our Replit starter code](https://replit.com/github/freeCodeCamp/boilerplate-time-calculator). -We are still developing the interactive instructional part of the Python curriculum. For now, here are some videos on the freeCodeCamp.org YouTube channel that will teach you everything you need to know to complete this project: - -- [Python for Everybody Video Course](https://www.freecodecamp.org/news/python-for-everybody/) (14 hours) - -- [Learn Python Video Course](https://www.freecodecamp.org/news/learn-python-video-course/) (10 hours) - # --instructions-- Write a function named `add_time` that takes in two required parameters and one optional parameter: