From 5c04b3d2046e14f4d41012d5fabe293709afde2d Mon Sep 17 00:00:00 2001 From: Arathy Rose Tony <42737797+arathyrose@users.noreply.github.com> Date: Mon, 30 Mar 2020 20:16:20 +0530 Subject: [PATCH 1/2] Update readme.md Add some links to data structure visualisation websites (Issue: #236) Links added: - https://visualgo.net/en - https://www.cs.usfca.edu/~galles/visualization/ --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 10aae44fb..00de5d44a 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,10 @@ For testing your patch locally follow the steps given below, 1. Install [pytest-cov](https://pypi.org/project/pytest-cov/). Skip this step if you are already having the package. 2. Run, `python3 -m pytest --doctest-modules --cov=./ --cov-report=html`. Look for, `htmlcov/index.html` and open it in your browser, which will show the coverage report. Try to ensure that the coverage is not decreasing by more than 1% for your patch. +For a good visualisation of the different data structures and algorithms, refer the following websites: +- https://visualgo.net/en +- https://www.cs.usfca.edu/~galles/visualization/ + Why we use Python? ------------------ From 1ae3487578da027c09c77cad73b1d90ee786b31e Mon Sep 17 00:00:00 2001 From: Gagandeep Singh Date: Mon, 30 Mar 2020 20:21:56 +0530 Subject: [PATCH 2/2] Apply suggestions from code review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00de5d44a..2ddf0701c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ For testing your patch locally follow the steps given below, 2. Run, `python3 -m pytest --doctest-modules --cov=./ --cov-report=html`. Look for, `htmlcov/index.html` and open it in your browser, which will show the coverage report. Try to ensure that the coverage is not decreasing by more than 1% for your patch. For a good visualisation of the different data structures and algorithms, refer the following websites: -- https://visualgo.net/en +- https://visualgo.net/ - https://www.cs.usfca.edu/~galles/visualization/ Why we use Python?