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.
- Host: GitHub
- URL: https://github.com/gumeer/python-challenges
- Owner: GumeeR
- Created: 2024-08-24T16:49:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-16T04:42:24.000Z (over 1 year ago)
- Last Synced: 2025-02-16T05:23:41.883Z (over 1 year ago)
- Topics: python, solved-challenges
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.