Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ This repository contains a collection of common programming problems and data st
- [Sorting](#sorting)
- [Graph Algorithms](#graph-algorithms)
- [Error Handling](#error-handling)
- [Usage](#usage)
- [License](#license)
- [Acknowledgments](#acknowledgments)

---
Expand Down Expand Up @@ -149,6 +151,10 @@ Implementing a tree using classes and references.
Print a binary tree in level order.
- **File**: `Trees/TreeLevelOrderPrintImple.py`

### Tree Representation (List of Lists)
Implementing a tree using a list of lists.
- **File**: `Trees/buildTreeTest.py`

---

## Sorting
Expand Down Expand Up @@ -204,6 +210,25 @@ Demonstrates `try-except-else-finally` blocks and user input validation.

---

## Usage

Most scripts are standalone and can be executed using Python 3:
```bash
python3 path/to/script.py
```
For example:
```bash
python3 Arrays/ArrayPairSumSol.py
```

---

## License

This project is licensed under the MIT License.

---

## Acknowledgments
- [Python for Data Structures, Algorithms, and Interviews on Udemy](https://www.udemy.com)
- [Problem Solving with Algorithms and Data Structures using Python](http://interactivepython.org/runestone/static/pythonds/index.html)
Expand Down