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

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

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.