Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added salient features of PyDataStructs #428

Merged
merged 1 commit into from
Oct 31, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,21 @@ You can install the package by running the following command,

Make sure that your python version is at least ``3.5``.

Why PyDataStructs?
==================

1. **Single package for all your data structures and algorithms** - We have and are
implementing many popular and useful data structures and algorithms.

2. **Consistent and Clean Interface** - The APIs we have provided are **consistent** with each other,
**clean** and **easy to use**. We make sure of that before adding any new data structure or algorithm.

3. **Well Tested** - We thoroughly test our code before making any new addition to PyDataStructs.
**99 percent** lines of our code have already been tested by us.

So, **you can easily rely on PyDataStructs** for any data structure or algorithm you want to use
**without worrying about implementing** it **from scratch**. Everything is just a few calls away.

Why do we use Python?
=====================

Expand Down