Skip to content

Commit fe3465b

Browse files
zairahiraDario-DCmoT01
authored
feat(curriculum): add hash table lab (freeCodeCamp#59545)
Co-authored-by: Dario-DC <[email protected]> Co-authored-by: moT01 <[email protected]>
1 parent 683c0c3 commit fe3465b

File tree

5 files changed

+425
-5
lines changed

5 files changed

+425
-5
lines changed

client/i18n/locales/english/intro.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3505,7 +3505,6 @@
35053505
"You'll practice using state and hooks to manage the properties of an element."
35063506
]
35073507
},
3508-
"dbta": { "title": "269", "intro": [] },
35093508
"lecture-understanding-effects-and-referencing-values-in-react": {
35103509
"title": "Understanding Effects and Referencing Values in React",
35113510
"intro": [
@@ -4071,9 +4070,12 @@
40714070
"title": "Build a Linked List Class",
40724071
"intro": [""]
40734072
},
4074-
"lab-hash-table-class": {
4075-
"title": "Build an Hash Table Class",
4076-
"intro": [""]
4073+
"lab-hash-table": {
4074+
"title": "Build a Hash Table",
4075+
"intro": [
4076+
"A hash table is a data structure that is used to store key-value pairs and is optimized for quick lookups.",
4077+
"In this lab, you will use your knowledge about data structures to build a hash table."
4078+
]
40774079
},
40784080
"review-data-structures": {
40794081
"title": "Data Structures Review",
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title: Introduction to the Build a Hash Table
3+
block: lab-hash-table
4+
superBlock: full-stack-developer
5+
---
6+
7+
## Introduction to the Build a Hash Table
8+
9+
A hash table is a data structure that is used to store key-value pairs and is optimized for quick lookups. In this lab, you will use your knowledge about data structures to build a hash table.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "Build a Hash Table",
3+
"isUpcomingChange": true,
4+
"dashedName": "lab-hash-table",
5+
"superBlock": "full-stack-developer",
6+
"challengeOrder": [{ "id": "67ed03ac474c48692f41749e", "title": "Build a Hash Table" }],
7+
"helpCategory": "Python",
8+
"blockLayout": "link",
9+
"blockType": "lab"
10+
}

0 commit comments

Comments
 (0)