Closed
Description
Description of the problem
After merging #72 the code quality is checked via CI, so information is required to be added in REDAME specifically under https://github.com/codezonediitj/pydatastructs#guidelines
The following points are to be added,
- There should be no trailing white spaces in any line.
- There should only one new line at the end of the each
.py
file. - Any comparison involving
True
,False
orNone
should be done by reference(is
,is not
) and not by value(==
,!=
).