Python-Data-Structures icon indicating copy to clipboard operation
Python-Data-Structures copied to clipboard

A compilation of Data Structures in Python. It is a collection of Python code examples and implementations of various data structures. This repository aims to provide a comprehensive resource for unde...

Python Data Structures

Here' an amazing repo regarding data structure using python. This is a compilation of python codes examples and implementations of various concepts of data structure. It comprises of various resources for efficient understanding and utilizion of data structure in python.

Mandatory ‼️

  1. You need to create an issue first and wait till you are assigned the issue before creating a Pull Request.
  2. Give a proper description about your proposed and implemented changes in your issues and pull requests.

Contributing Guidelines

You can find our Contributing Guidelines here.

Getting started 🤟

  1. Fork this repo (button on top).

  2. Clone on your local machine.

    git clone https://github.com/himanshu-03/Python-Data-Structures.git
    
  3. Navigate to the project directory.

    cd Python-Data-Structures
    
  4. Create a new branch

    git checkout -b <branch-name>
    
  5. Adding New Data Strcture

    • Create a folder named by the Data Structure
    • Create .py file for a particular algorithm or code

    If data structure folder already exists in the repo, kindly add your code in the respective folder.

  6. Add all the changes that you have made

    git add .
    
  7. Commit your changes

    git commit -m "{Message}"
    
  8. Then push

    git push -u origin <branch-name>
    
  9. Submit a pull request :sunglasses:

🪪 License

This project follows the MIT LICENSE.

Contributors ✨


Connect with me

Github &nbsp&nbsp&nbsp LinkedIn &nbsp&nbsp&nbsp Twitter &nbsp&nbsp&nbsp Instagram &nbsp&nbsp&nbsp Gmail&nbsp&nbsp&nbsp

(Back to top)