Skip to content

Commit 8ee771d

Browse files
committed
name changes for chapters - each exercise now owns a chapter
1 parent 9cd91c2 commit 8ee771d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ The repo for our backend framework- [Velocy](https://github.com/ishtms/velocy)
255255
- [Improving the `Router` API](/chapters/ch06.3-improving-the-router-api.md)
256256
- [The need for a `trie`](/chapters/ch06.4-the-need-for-a-trie.md)
257257
- [What is a `Trie` anyway?](/chapters/ch06.4-the-need-for-a-trie.md#what-is-a-trie-anyway)
258-
- [Exercise 1 - Implementing a `Trie`](/chapters/ch07-ex-implementing-a-trie.md#exercise---implementing-a-trie)
258+
- [Exercise 1 - Implementing a `Trie`](/chapters/ch07-ex-implementing-a-trie.md#exercise-1---implementing-a-trie)
259259
- [Root Node](/chapters/ch07-ex-implementing-a-trie.md#root-node)
260260
- [End of the word](/chapters/ch07-ex-implementing-a-trie.md#end-of-the-word)
261261
- [Challenge 1: Basic Trie with `insert` Method](/chapters/ch07-ex-implementing-a-trie.md#challenge-1-basic-trie-with-insert-method)
@@ -267,7 +267,7 @@ The repo for our backend framework- [Velocy](https://github.com/ishtms/velocy)
267267
- [More details](/chapters/ch07-ex-implementing-a-trie.md#more-details-1)
268268
- [Hints](/chapters/ch07-ex-implementing-a-trie.md#hints)
269269
- [Solution](#solution-1)
270-
- [Exercise 2 - Implementing our Trie based `Router`](/chapters/ch08-ex-implementing-router.md)
270+
- [Exercise 2 - Implementing our Trie based `Router`](/chapters/ch08-ex-implementing-router.md#exercise-2---implementing-our-trie-based-router)
271271
- [Challenge 1: Implementing the `addRoute` method](/chapters/ch08-ex-implementing-router.md#challenge-1-implementing-the-addroute-method)
272272
- [Requirements](/chapters/ch08-ex-implementing-router.md#requirements)
273273
- [More details](/chapters/ch08-ex-implementing-router.md#more-details)

chapters/ch07-ex-implementing-a-trie.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Read Prev](/assets/imgs/prev.png)](/chapters/ch06.4-the-need-for-a-trie.md)
22

3-
# Exercises - Implementing a `Trie`
3+
# Exercise 1 - Implementing a `Trie`
44

55
> This exercise will motivate you to work on implementing your solution independently. Once you have completed the exercise, you can move on to the next challenge or read the solution to find a different approach.
66
>

chapters/ch08-ex-implementing-router.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Read Prev](/assets/imgs/prev.png)](/chapters/ch07-ex-implementing-a-trie.md)
22

3-
# Exercise - Implementing our Trie based `Router`
3+
# Exercise 2 - Implementing our Trie based `Router`
44

55
> This challenge is designed to push your boundaries and is considered to be more advanced than usual. It's completely okay if you don't crack it on your first attempt. The key is to persist, revisit your logic, and don't hesitate to iterate on your solutions.
66

0 commit comments

Comments
 (0)