Skip to content

Commit 86f34c5

Browse files
fix(curriculum): reorder intros for superblock python-v9 (freeCodeCamp#66293)
1 parent 1ad1742 commit 86f34c5

1 file changed

Lines changed: 37 additions & 37 deletions

File tree

client/i18n/locales/english/intro.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -4192,6 +4192,12 @@
41924192
"In these lessons, you will learn about functions and scope in Python."
41934193
]
41944194
},
4195+
"lab-discount-calculator": {
4196+
"title": "Build an Apply Discount Function",
4197+
"intro": [
4198+
"In this lab, you will practice basic Python by building a calculator to apply a discount to a price."
4199+
]
4200+
},
41954201
"workshop-caesar-cipher": {
41964202
"title": "Build a Caesar Cipher",
41974203
"intro": [
@@ -4262,12 +4268,6 @@
42624268
"In this workshop, you'll practice working with dictionaries and sets while validating a collection of medical data."
42634269
]
42644270
},
4265-
"lab-user-configuration-manager": {
4266-
"title": "Build a User Configuration Manager",
4267-
"intro": [
4268-
"In this lab, you will practice working with dictionaries in Python."
4269-
]
4270-
},
42714271
"review-dictionaries-and-sets": {
42724272
"title": "Dictionaries and Sets review",
42734273
"intro": [
@@ -4281,6 +4281,12 @@
42814281
"Test what you've learned about dictionaries and sets in Python with this quiz."
42824282
]
42834283
},
4284+
"lab-user-configuration-manager": {
4285+
"title": "Build a User Configuration Manager",
4286+
"intro": [
4287+
"In this lab, you will practice working with dictionaries in Python."
4288+
]
4289+
},
42844290
"lecture-understanding-error-handling": {
42854291
"title": "Understanding Error Handling",
42864292
"intro": [
@@ -4327,12 +4333,6 @@
43274333
"In this workshop you will implement classes and objects by building an email simulator that simulates sending, receiving, and managing emails between different users."
43284334
]
43294335
},
4330-
"lab-budget-app": {
4331-
"title": "Build a Budget App",
4332-
"intro": [
4333-
"In this lab you will build a budget app and practice creating a class and methods for that class."
4334-
]
4335-
},
43364336
"review-classes-and-objects": {
43374337
"title": "Classes and Objects Review",
43384338
"intro": [
@@ -4346,6 +4346,12 @@
43464346
"Test what you've learned about classes and objects in Python with this quiz."
43474347
]
43484348
},
4349+
"lab-budget-app": {
4350+
"title": "Build a Budget App",
4351+
"intro": [
4352+
"In this lab you will build a budget app and practice creating a class and methods for that class."
4353+
]
4354+
},
43494355
"lecture-understanding-object-oriented-programming-and-encapsulation": {
43504356
"title": "Understanding Object Oriented Programming and Encapsulation",
43514357
"intro": [
@@ -4376,18 +4382,6 @@
43764382
"In this workshop, you will create a media catalogue application using object-oriented programming principles."
43774383
]
43784384
},
4379-
"lab-polygon-area-calculator": {
4380-
"title": "Build a Polygon Area Calculator",
4381-
"intro": [
4382-
"In this lab, you will use object-oriented programming to calculate the areas of different polygons like squares and rectangles."
4383-
]
4384-
},
4385-
"lab-discount-calculator": {
4386-
"title": "Build an Apply Discount Function",
4387-
"intro": [
4388-
"In this lab, you will practice basic Python by building a calculator to apply a discount to a price."
4389-
]
4390-
},
43914385
"lecture-understanding-abstraction": {
43924386
"title": "Understanding Abstraction",
43934387
"intro": ["Learn about Understanding Abstraction in these lessons."]
@@ -4416,6 +4410,12 @@
44164410
"Test what you've learned about object oriented programming in python with this quiz."
44174411
]
44184412
},
4413+
"lab-polygon-area-calculator": {
4414+
"title": "Build a Polygon Area Calculator",
4415+
"intro": [
4416+
"In this lab, you will use object-oriented programming to calculate the areas of different polygons like squares and rectangles."
4417+
]
4418+
},
44194419
"lecture-working-with-common-data-structures": {
44204420
"title": "Working with Common Data Structures",
44214421
"intro": [
@@ -4428,13 +4428,6 @@
44284428
"In this workshop, you'll practice working with data structures by building a linked list."
44294429
]
44304430
},
4431-
"lab-hash-table": {
4432-
"title": "Build a Hash Table",
4433-
"intro": [
4434-
"A hash table is a data structure that is used to store key-value pairs and is optimized for quick lookups.",
4435-
"In this lab, you will use your knowledge about data structures to build a hash table."
4436-
]
4437-
},
44384431
"review-data-structures": {
44394432
"title": "Data Structures Review",
44404433
"intro": [
@@ -4448,6 +4441,13 @@
44484441
"Test what you've learned about data structures in Python with this quiz."
44494442
]
44504443
},
4444+
"lab-hash-table": {
4445+
"title": "Build a Hash Table",
4446+
"intro": [
4447+
"A hash table is a data structure that is used to store key-value pairs and is optimized for quick lookups.",
4448+
"In this lab, you will use your knowledge about data structures to build a hash table."
4449+
]
4450+
},
44514451
"lecture-searching-and-sorting-algorithms": {
44524452
"title": "Searching and Sorting Algorithms",
44534453
"intro": [
@@ -4493,12 +4493,6 @@
44934493
"In this lab, you will implement the Luhn algorithm to validate identification numbers such as credit card numbers."
44944494
]
44954495
},
4496-
"lab-tower-of-hanoi": {
4497-
"title": "Implement the Tower of Hanoi Algorithm",
4498-
"intro": [
4499-
"In this lab, you will implement an algorithm to solve the Tower of Hanoi puzzle."
4500-
]
4501-
},
45024496
"review-searching-and-sorting-algorithms": {
45034497
"title": "Searching and Sorting Algorithms Review",
45044498
"intro": [
@@ -4511,6 +4505,12 @@
45114505
"Test what you've learned about searching and sorting algorithms in Python with this quiz."
45124506
]
45134507
},
4508+
"lab-tower-of-hanoi": {
4509+
"title": "Implement the Tower of Hanoi Algorithm",
4510+
"intro": [
4511+
"In this lab, you will implement an algorithm to solve the Tower of Hanoi puzzle."
4512+
]
4513+
},
45144514
"lecture-understanding-graphs-and-trees": {
45154515
"title": "Understanding Graphs and Trees",
45164516
"intro": [

0 commit comments

Comments
 (0)