https://github.com/sachin-kumar-2003/competitiveprograming
Competitive Programming Using Python .. Solving Data structure Problem
https://github.com/sachin-kumar-2003/competitiveprograming
data-structures datastructures leetcode leetcode-python3 leetcode-solutions python
Last synced: 3 days ago
JSON representation
Competitive Programming Using Python .. Solving Data structure Problem
- Host: GitHub
- URL: https://github.com/sachin-kumar-2003/competitiveprograming
- Owner: sachin-kumar-2003
- Created: 2025-01-02T14:19:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-13T14:28:13.000Z (11 months ago)
- Last Synced: 2025-07-13T16:19:49.853Z (11 months ago)
- Topics: data-structures, datastructures, leetcode, leetcode-python3, leetcode-solutions, python
- Language: Python
- Homepage:
- Size: 204 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Competitive Programming Solutions
This repository contains a collection of Python solutions for various competitive programming problems. Each file is named according to the problem or its main function, making it easy to navigate and locate specific solutions.
## Repository Structure
- Each file (e.g., `01_maxScore.py`, `02_vowelStrings.py`, ...) contains the solution to a single competitive programming problem.
- File names generally reflect the main topic or function solved in the script.
- All solutions are implemented in **Python**.
## Getting Started
To run any solution:
1. Clone this repository:
```bash
git clone https://github.com/sachin-kumar-2003/competitivePrograming.git
cd competitivePrograming
```
2. Run a script using Python:
```bash
python 01_maxScore.py
```
(Replace `01_maxScore.py` with the file you want to execute.)
## Example Problems
Some sample files:
- [01_maxScore.py](https://github.com/sachin-kumar-2003/competitivePrograming/blob/main/01_maxScore.py)
- [02_vowelStrings.py](https://github.com/sachin-kumar-2003/competitivePrograming/blob/main/02_vowelStrings.py)
- [03_waysToSplitArray.py](https://github.com/sachin-kumar-2003/competitivePrograming/blob/main/03_waysToSplitArray.py)
- [04_countPalindromicSubsequence.py](https://github.com/sachin-kumar-2003/competitivePrograming/blob/main/04_countPalindromicSubsequence.py)
- [05_shiftingLetters.py](https://github.com/sachin-kumar-2003/competitivePrograming/blob/main/05_shiftingLetters.py)
And many more!
For the complete list of files, see the [repository contents](https://github.com/sachin-kumar-2003/competitivePrograming/tree/main).
## Contributing
Contributions are welcome!
If you’d like to add new solutions or improve existing ones, feel free to open a pull request.