From dbb02774871c33a77d9da1b6e460a8e57e77e6f6 Mon Sep 17 00:00:00 2001 From: Gagandeep Singh Date: Sun, 31 Oct 2021 23:49:07 +0530 Subject: [PATCH] Added salient features of PyDataStructs --- docs/source/index.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/source/index.rst b/docs/source/index.rst index 8ca90a45e..5138f0242 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -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? =====================