An open API service indexing awesome lists of open source software.

https://github.com/gumeer/python-challenges

This repository contains solutions to various programming challenges in Python. Each challenge is organized into a separate branch to facilitate exploration and tracking of solutions.
https://github.com/gumeer/python-challenges

python solved-challenges

Last synced: about 1 year ago
JSON representation

This repository contains solutions to various programming challenges in Python. Each challenge is organized into a separate branch to facilitate exploration and tracking of solutions.

Awesome Lists containing this project

README

          

# Python Challenges

## ✨ Repository Structure

- **Main Branch (`main`)**: README and general project references.
- **Challenge Branches**: Each challenge is developed in a specific branch with its own Python implementation.

### 🔗 How to Access a Challenge

To explore a specific challenge, follow these steps:

1. Clone the repository:

```bash
git clone https://github.com/GumeeR/Python-Challenges.git
cd python-challenges
```

2. List the available branches:

```bash
git branch -r
```

3. Switch to the challenge branch you want to review:

```bash
git checkout branch-name
```

### 🔧 Contributions

Contributions are welcome! If you want to add a new challenge or improve an existing solution:

1. **Fork** the repository.
2. Develop your solution in a new branch.
3. Submit a **pull request**.

### 📊 Current Challenges

- [ ] **FAMILY TREE:** Implementation of a system to model family relationships.
- [ ] **RESCUING THE MOUSE:** Algorithm to solve a maze and guide a mouse to the exit.