diff --git a/README.md b/README.md index 00af4f2eb2d7be6ec3b12a2e464166927e249c57..0ae7553c7fde820c38ea0cefd1fe02be3454806c 100644 --- a/README.md +++ b/README.md @@ -13,25 +13,25 @@ the practical application of these concepts through structured tasks and accompa ``` / ├── worksheet_one/ -│ ├── .vscode/ # IDE configuration files +│ ├── .vscode/ # Configuration files │ ├── docs/ # Documentation for Worksheet 1 -│ ├── task_1/ # Implements Task 1: File parsing and validation -│ ├── task_2/ # Implements Task 2: Data processing using templates -│ ├── task_3/ # Implements Task 3: Advanced data manipulation -│ ├── task_4/ # Integrates features from previous tasks -│ ├── tasks_revisited/ # Combines tasks 2 and 3 using templates for reusability +│ ├── task_1/ # Implements Task 1 +│ ├── task_2/ # Implements Task 2 +│ ├── task_3/ # Implements Task 3 +│ ├── task_4/ # Creating a template method allowing for easier implementation +│ ├── tasks_revisited/ # Using template from task 4 to re-visit tasks 2 and 3 │ ├── worksheet_two/ -│ ├── .vscode/ # IDE configuration files +│ ├── .vscode/ # Configuration files │ ├── docs/ # Documentation for Worksheet 2 │ ├── simpletest/ # Testing framework for Worksheet Two │ ├── task_1_bump_allocator/ # Implements a custom memory allocator │ ├── task_2_unit_tests/ # Unit tests for validating functionality -│ ├── task_3/ # Extends features with advanced functionality +│ ├── task_3/ # Implements Task 3 │ ├── worksheet_zero/ -│ ├── TicTacToe/ # Simple implementation of the TicTacToe game -│ └── hello_world.cpp # Basic "Hello, World!" example in C++ +│ ├── TicTacToe/ # Simple TicTacToe game +│ └── hello_world.cpp # Basic example of running C++ program ``` ---