Harshul jain

Results 5 issues of Harshul jain

Hi Team, It is the commit just out of interest to contribute. we should add title, xlabel, and ylabel to the plots to make them better understandable. this helps the...

Hi Team, Since most of the developers still use pip, should we add a requirements file present to install all the required libraries at once. sometimes when I am in...

Added the depth first traversal for a graph.

First PR

`while queue: node = queue.pop(0) if node not in visited: visited.add(node)` this takes time complexity of O(VE) rather than O(V+E)